Searched refs:JSONNull (Results 1 – 2 of 2) sorted by relevance
169 class JSONNull : public JSONValue {171 JSONNull();173 JSONNull(const JSONNull &s) = delete;174 JSONNull &operator=(const JSONNull &s) = delete;178 typedef std::shared_ptr<JSONNull> SP;184 ~JSONNull() override = default;
106 JSONNull::JSONNull() : JSONValue(JSONValue::Kind::Null) {} in JSONNull() function in JSONNull108 void JSONNull::Write(std::ostream &s) { s << "null"; } in Write()584 return JSONValue::SP(new JSONNull()); in ParseJSONValue()