00001 #pragma once
00002
00003 #ifndef NULL_H_62B23520_7C8E_11DE_8A39_0800200C9A66
00004 #define NULL_H_62B23520_7C8E_11DE_8A39_0800200C9A66
00005
00006
00007 namespace YAML
00008 {
00009 class Node;
00010
00011 struct _Null {};
00012 inline bool operator == (const _Null&, const _Null&) { return true; }
00013 inline bool operator != (const _Null&, const _Null&) { return false; }
00014
00015 bool IsNull(const Node& node);
00016
00017 extern _Null Null;
00018 }
00019
00020 #endif // NULL_H_62B23520_7C8E_11DE_8A39_0800200C9A66
00021