mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2026-01-02 12:07:55 +08:00
13 lines
159 B
C++
13 lines
159 B
C++
#include "yaml-cpp/null.h"
|
|
#include "yaml-cpp/old-api/node.h"
|
|
|
|
namespace YAML
|
|
{
|
|
_Null Null;
|
|
|
|
bool IsNull(const Node& node)
|
|
{
|
|
return node.Read(Null);
|
|
}
|
|
}
|