Definition at line 917 of file yaml_decoders.cc.
◆ 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) {
927 rhs.include =
928 node["include"].as<std::vector<string_or_regex>>();
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: