linux版本中间件

JsonStringMaker.h 707B

123456789101112131415
  1. #pragma once
  2. #include <string>
  3. class JsonStringMaker
  4. {
  5. static std::string creatJson(std::string type, bool result);
  6. static std::string creatJson(std::string type, std::string result);
  7. static std::string creatJson(std::string type, bool result, std::string data);
  8. static std::string creatJsonIncoming(std::string callid, std::string caller, std::string callee, std::string trunkNumber);
  9. };
  10. //std::string creatJson(std::string type, bool result);
  11. //std::string creatJson(std::string type, std::string result);
  12. //std::string creatJson(std::string type, bool result, std::string data);
  13. //std::string creatJsonIncoming(std::string callid,std::string caller, std::string callee, std::string trunkNumber);