Added IsNull function

This commit is contained in:
Jesse Beder
2009-07-31 05:07:21 +00:00
parent 7a89920441
commit d506dae914
3 changed files with 12 additions and 5 deletions

View File

@@ -1,6 +1,12 @@
#include "null.h"
#include "node.h"
namespace YAML
{
_Null Null;
bool IsNull(const Node& node)
{
return node.Read(Null);
}
}