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