NettyHttpNull.h 644 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * @Description:
  3. * @Version: 1.0
  4. * @Autor: lishengyin
  5. * @Date: 2021-11-09 16:31:01
  6. * @LastEditors: lishengyin
  7. * @LastEditTime: 2022-02-23 10:25:36
  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. /**
  23. * @description: json转换为Object
  24. * @param {Value&} object
  25. * @return {*}
  26. */
  27. bool jsonToObject(const rapidjson::Value& object){
  28. return true;
  29. }
  30. };