/* * @Description: * @Version: 1.0 * @Autor: lishengyin * @Date: 2021-11-09 16:31:01 * @LastEditors: Your Name lishengyin@sz-sunwin.com * @LastEditTime: 2022-09-04 21:27:03 */ #ifndef __HTTPNULL_HPP_ #define __HTTPNULL_HPP_ #include using namespace std; #include #include #include #include class HttpNull { private: public: HttpNull() {} ~HttpNull() {} /** * @description: json转换为Object * @param {Value&} object * @return {*} */ bool jsonToObject(const rapidjson::Value& object){ return true; } void ObjectToJson(rapidjson::Writer& writer){ writer.StartObject(); writer.EndObject(); } }; #endif