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< layout_hint > Struct Reference

Detailed Description

Definition at line 942 of file yaml_decoders.cc.

Static Public Member Functions

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

Member Function Documentation

◆ decode()

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

Definition at line 943 of file yaml_decoders.cc.

944 {
945 assert(node.Type() == NodeType::Map);
946
947 if (node["up"]) {
948 rhs.hint = hint_t::up;
949 rhs.entity = node["up"].as<std::string>();
950 }
951 else if (node["down"]) {
952 rhs.hint = hint_t::down;
953 rhs.entity = node["down"].as<std::string>();
954 }
955 else if (node["left"]) {
956 rhs.hint = hint_t::left;
957 rhs.entity = node["left"].as<std::string>();
958 }
959 else if (node["right"]) {
960 rhs.hint = hint_t::right;
961 rhs.entity = node["right"].as<std::string>();
962 }
963 else if (node["together"]) {
964 rhs.hint = hint_t::together;
965 rhs.entity = node["together"].as<std::vector<std::string>>();
966 }
967 else if (node["row"]) {
968 rhs.hint = hint_t::row;
969 rhs.entity = node["row"].as<std::vector<std::string>>();
970 }
971 else if (node["column"]) {
972 rhs.hint = hint_t::column;
973 rhs.entity = node["column"].as<std::vector<std::string>>();
974 }
975 else
976 return false;
977
978 return true;
979 }

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