0.5.4
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 441 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 442 of file yaml_decoders.cc.

443 {
444 if (node["before"])
445 rhs.before = node["before"].as<decltype(rhs.before)>();
446
447 if (node["after"])
448 rhs.after = node["after"].as<decltype(rhs.after)>();
449
450 if (node["cmd"])
451 rhs.cmd = node["cmd"].as<decltype(rhs.cmd)>();
452
453 if (node["style"])
454 rhs.style = node["style"].as<decltype(rhs.style)>();
455
456 return true;
457 }

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