0.6.0
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 1019 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 1020 of file yaml_decoders.cc.

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

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