2010-10-18 11:05:53 +04:00
|
|
|
#include "yaml-cpp/null.h"
|
2009-07-30 08:42:27 +04:00
|
|
|
|
2014-03-22 21:49:16 +04:00
|
|
|
namespace YAML {
|
|
|
|
|
_Null Null;
|
2016-04-02 01:14:59 +03:00
|
|
|
|
|
|
|
|
bool IsNullString(const std::string& str) {
|
2016-10-12 08:00:39 +03:00
|
|
|
return str.empty() || str == "~" || str == "null" || str == "Null" ||
|
|
|
|
|
str == "NULL";
|
2016-04-02 01:14:59 +03:00
|
|
|
}
|
2009-07-30 08:42:27 +04:00
|
|
|
}
|