| namespace YAML { | |
| class Node; | |
| struct YAML_CPP_API _Null {}; | |
| inline bool operator==(const _Null&, const _Null&) { return true; } | |
| inline bool operator!=(const _Null&, const _Null&) { return false; } | |
| YAML_CPP_API bool IsNull(const Node& node); // old API only | |
| YAML_CPP_API bool IsNullString(const std::string& str); | |
| extern YAML_CPP_API _Null Null; | |
| } | |