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

Detailed Description

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

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

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