Searched refs:JSONNull (Results 1 – 2 of 2) sorted by relevance
171 class JSONNull : public JSONValue {173 JSONNull();175 JSONNull(const JSONNull &s) = delete;176 JSONNull &operator=(const JSONNull &s) = delete;180 typedef std::shared_ptr<JSONNull> SP;186 ~JSONNull() override = default;
112 JSONNull::JSONNull() : JSONValue(JSONValue::Kind::Null) {} in JSONNull() function in JSONNull114 void JSONNull::Write(Stream &s) { s.Printf("null"); } in Write()545 return JSONValue::SP(new JSONNull()); in ParseJSONValue()