null.cpp 151 Bytes
Newer Older
beder's avatar
beder committed
1
2
3
4
5
6
7
8
9
10
11
12
#include "yaml-cpp/null.h"
#include "yaml-cpp/node.h"

namespace YAML
{
	_Null Null;

	bool IsNull(const Node& node)
	{
		return node.Read(Null);
	}
}