0.6.0
C++ to UML diagram generator based on Clang
Loading...
Searching...
No Matches
Static Public Member Functions | List of all members
YAML::convert< plantuml > Struct Reference

Detailed Description

Definition at line 499 of file yaml_decoders.cc.

Static Public Member Functions

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

Member Function Documentation

◆ 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: