NettyHttpNull.h 496 B

1234567891011121314151617181920212223242526
  1. /*
  2. * @Description:
  3. * @Version: 1.0
  4. * @Autor: lishengyin
  5. * @Date: 2021-11-09 16:31:01
  6. * @LastEditors: lishengyin
  7. * @LastEditTime: 2021-11-24 15:54:08
  8. */
  9. #pragma once
  10. #include <iostream>
  11. using namespace std;
  12. #include <rapidjson/document.h>
  13. #include <rapidjson/rapidjson.h>
  14. #include <rapidjson/stringbuffer.h>
  15. #include <rapidjson/writer.h>
  16. class NettyHttpNull
  17. {
  18. private:
  19. public:
  20. NettyHttpNull() {}
  21. ~NettyHttpNull() {}
  22. bool jsonToObject(const rapidjson::Value& object);
  23. };