| 123456789101112131415 |
- #pragma once
- #include <string>
- class JsonStringMaker
- {
- static std::string creatJson(std::string type, bool result);
- static std::string creatJson(std::string type, std::string result);
- static std::string creatJson(std::string type, bool result, std::string data);
- static std::string creatJsonIncoming(std::string callid, std::string caller, std::string callee, std::string trunkNumber);
- };
- //std::string creatJson(std::string type, bool result);
- //std::string creatJson(std::string type, std::string result);
- //std::string creatJson(std::string type, bool result, std::string data);
- //std::string creatJsonIncoming(std::string callid,std::string caller, std::string callee, std::string trunkNumber);
|