HttpNull.hpp 768 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * @Description:
  3. * @Version: 1.0
  4. * @Autor: lishengyin
  5. * @Date: 2021-11-09 16:31:01
  6. * @LastEditors: lishengyin
  7. * @LastEditTime: 2022-06-16 14:57:38
  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 HttpNull
  17. {
  18. private:
  19. public:
  20. HttpNull() {}
  21. ~HttpNull() {}
  22. /**
  23. * @description: json转换为Object
  24. * @param {Value&} object
  25. * @return {*}
  26. */
  27. bool jsonToObject(const rapidjson::Value& object){
  28. return true;
  29. }
  30. void ObjectToJson(rapidjson::Writer<rapidjson::StringBuffer>& writer){
  31. writer.StartObject();
  32. writer.EndObject();
  33. }
  34. };