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

Detailed Description

Definition at line 917 of file yaml_decoders.cc.

Static Public Member Functions

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

Member Function Documentation

◆ decode()

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

Definition at line 918 of file yaml_decoders.cc.

919 {
920 if (node.Type() == NodeType::Sequence) {
921 rhs.include = node.as<std::vector<string_or_regex>>();
922 return true;
923 }
924
925 if (node.Type() == NodeType::Map) {
926 if (has_key(node, "include"))
927 rhs.include =
928 node["include"].as<std::vector<string_or_regex>>();
929 if (has_key(node, "exclude"))
930 rhs.exclude =
931 node["exclude"].as<std::vector<string_or_regex>>();
932 return true;
933 }
934
935 return false;
936 }

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