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< std::filesystem::path > Struct Reference

Detailed Description

Definition at line 230 of file yaml_decoders.cc.

Static Public Member Functions

static bool decode (const Node &node, std::filesystem::path &rhs)
 

Member Function Documentation

◆ decode()

static bool YAML::convert< std::filesystem::path >::decode ( const Node &  node,
std::filesystem::path &  rhs 
)
inlinestatic

Definition at line 231 of file yaml_decoders.cc.

232 {
233 if (!node.IsScalar())
234 return false;
235
236 rhs = std::filesystem::path{node.as<std::string>()};
237
238 return true;
239 }

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