1234567891011121314151617181920212223242526272829 |
- #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){
-
- return true;
- }
- };
|