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

Detailed Description

Definition at line 288 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 289 of file yaml_decoders.cc.

290 {
291 if (!node.IsScalar())
292 return false;
293
294 rhs = std::filesystem::path{node.as<std::string>()};
295
296 return true;
297 }

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