1234567891011121314151617181920212223242526 |
- /*
- * @Description:
- * @Version: 1.0
- * @Autor: lishengyin
- * @Date: 2021-11-09 16:31:01
- * @LastEditors: lishengyin
- * @LastEditTime: 2021-11-24 15:54:08
- */
- #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() {}
- bool jsonToObject(const rapidjson::Value& object);
- };
|