mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 20:51:16 +00:00
18 lines
208 B
C++
18 lines
208 B
C++
#include "yaml-cpp/null.h"
|
|
|
|
#if YAML_CPP_OLD_API
|
|
#include "yaml-cpp/node.h"
|
|
#endif
|
|
|
|
namespace YAML
|
|
{
|
|
_Null Null;
|
|
|
|
#if YAML_CPP_OLD_API
|
|
bool IsNull(const Node& node)
|
|
{
|
|
return node.Read(Null);
|
|
}
|
|
#endif
|
|
}
|