0.6.1
C++ to UML diagram generator based on Clang
Loading...
Searching...
No Matches
Static Public Member Functions | List of all members
YAML::convert< diagram_template > Struct Reference

Detailed Description

Definition at line 1021 of file yaml_decoders.cc.

Static Public Member Functions

static bool decode (const Node &node, diagram_template &rhs)
 

Member Function Documentation

◆ decode()

static bool YAML::convert< diagram_template >::decode ( const Node &  node,
diagram_template rhs 
)
inlinestatic

Definition at line 1022 of file yaml_decoders.cc.

1023 {
1024 assert(node.Type() == NodeType::Map);
1025
1027 node["type"].as<std::string>());
1028 rhs.jinja_template = node["template"].as<std::string>();
1029 rhs.description = node["description"].as<std::string>();
1030
1031 return true;
1032 }

The documentation for this struct was generated from the following file: