// // MCJSON.h // hermes // // Created by DINH Viêt Hoà on 4/8/13. // Copyright (c) 2013 MailCore. All rights reserved. // #ifndef MAILCORE_MCJSON_H #define MAILCORE_MCJSON_H #include #include #include #include #include #include #ifdef __cplusplus namespace mailcore { class Null; class MAILCORE_EXPORT JSON { public: static String * objectToJSONString(Object * object); static Data * objectToJSONData(Object * object); static Object * objectFromJSONString(String * json); static Object * objectFromJSONData(Data * json); }; } #endif #endif /* defined(__hermes__MCJSON__) */