Definition at line 498 of file yaml_decoders.cc.
◆ decode()
| static bool YAML::convert< plantuml >::decode |
( |
const Node & |
node, |
|
|
plantuml & |
rhs |
|
) |
| |
|
inlinestatic |
Definition at line 499 of file yaml_decoders.cc.
500 {
501 if (node["before"])
502 rhs.before = node["before"].as<decltype(rhs.before)>();
503
504 if (node["after"])
505 rhs.after = node["after"].as<decltype(rhs.after)>();
506
507 if (node["cmd"])
508 rhs.cmd = node["cmd"].as<decltype(rhs.cmd)>();
509
510 if (node["style"])
511 rhs.style = node["style"].as<decltype(rhs.style)>();
512
513 return true;
514 }
The documentation for this struct was generated from the following file: