diff options
author | George Hazan <ghazan@miranda.im> | 2017-12-28 18:57:03 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-12-28 18:57:03 +0300 |
commit | 6872a9a9b1f032ede5471a8a03abc76e7c7259d9 (patch) | |
tree | 59c6e96e8c6f52ba2b6c69cf3b52bc86a8ffb48e /libs/libjson/src/stdafx.cxx | |
parent | 16133fc3ddb4952e78a20078ece5440766b76f73 (diff) | |
parent | f6c14ec9ec02d5eec251f20463aeb2e091978cd7 (diff) |
two missing operators added to json wrapper
Diffstat (limited to 'libs/libjson/src/stdafx.cxx')
-rw-r--r-- | libs/libjson/src/stdafx.cxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libs/libjson/src/stdafx.cxx b/libs/libjson/src/stdafx.cxx index 21194081bc..b16af99abd 100644 --- a/libs/libjson/src/stdafx.cxx +++ b/libs/libjson/src/stdafx.cxx @@ -51,3 +51,15 @@ LIBJSON_DLL(JSONNode&) operator<<(JSONNode &json, const WCHAR_PARAM ¶m) json.push_back(JSONNode(param.szName, ptrA(mir_utf8encodeW(param.wszValue)).get()));
return json;
}
+
+LIBJSON_DLL(JSONNode&) operator<<(JSONNode &json, const NULL_PARAM ¶m) +{ + json.push_back(JSONNode(param.szName, nullptr)); + return json; +}
+
+LIBJSON_DLL(JSONNode&) operator<<(JSONNode &json, const JSON_PARAM ¶m) +{ + json.push_back(JSONNode(param.szName, param.node)); + return json; +} |