HttpNull.hpp 836 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * @Description:
  3. * @Version: 1.0
  4. * @Autor: lishengyin
  5. * @Date: 2021-11-09 16:31:01
  6. * @LastEditors: Your Name lishengyin@sz-sunwin.com
  7. * @LastEditTime: 2022-09-04 21:27:03
  8. */
  9. #ifndef __HTTPNULL_HPP_
  10. #define __HTTPNULL_HPP_
  11. #include <iostream>
  12. using namespace std;
  13. #include <rapidjson/document.h>
  14. #include <rapidjson/rapidjson.h>
  15. #include <rapidjson/stringbuffer.h>
  16. #include <rapidjson/writer.h>
  17. class HttpNull
  18. {
  19. private:
  20. public:
  21. HttpNull() {}
  22. ~HttpNull() {}
  23. /**
  24. * @description: json转换为Object
  25. * @param {Value&} object
  26. * @return {*}
  27. */
  28. bool jsonToObject(const rapidjson::Value& object){
  29. return true;
  30. }
  31. void ObjectToJson(rapidjson::Writer<rapidjson::StringBuffer>& writer){
  32. writer.StartObject();
  33. writer.EndObject();
  34. }
  35. };
  36. #endif