123456789101112131415161718192021222324252627282930313233343536 |
- /*
- * @Description:
- * @Version: 1.0
- * @Autor: lishengyin
- * @Date: 2021-11-09 16:31:01
- * @LastEditors: lishengyin
- * @LastEditTime: 2022-02-23 10:25:36
- */
- #pragma once
- #include <iostream>
- using namespace std;
- #include <rapidjson/document.h>
- #include <rapidjson/rapidjson.h>
- #include <rapidjson/stringbuffer.h>
- #include <rapidjson/writer.h>
- class NettyHttpNull
- {
- private:
-
- public:
- NettyHttpNull() {}
- ~NettyHttpNull() {}
- /**
- * @description: json转换为Object
- * @param {Value&} object
- * @return {*}
- */
- bool jsonToObject(const rapidjson::Value& object){
-
- return true;
- }
- };
|