yaml-cpp/include/null.h

22 lines
427 B
C
Raw Normal View History

#pragma once
#ifndef NULL_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define NULL_H_62B23520_7C8E_11DE_8A39_0800200C9A66
namespace YAML
{
2009-07-31 09:07:21 +04:00
class Node;
struct _Null {};
2009-07-30 10:49:09 +04:00
inline bool operator == (const _Null&, const _Null&) { return true; }
inline bool operator != (const _Null&, const _Null&) { return false; }
2009-07-31 09:07:21 +04:00
bool IsNull(const Node& node);
extern _Null Null;
}
2009-08-24 22:23:20 +04:00
#endif // NULL_H_62B23520_7C8E_11DE_8A39_0800200C9A66