JsonUtils.h 230 B

123456789101112131415
  1. #ifndef JSONUTIL_H
  2. #define JSONUTIL_H
  3. #include "cJSON.h"
  4. #include "json_type.h"
  5. namespace JsonUtil {
  6. string objectToString(const JsonType &obj);
  7. JsonType stringToObject(const string &json);
  8. }
  9. #endif // JSONUTIL_H