0.6.3
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 498 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 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: