1
0
mirror of https://github.com/stefanocasazza/ULib.git synced 2025-10-26 19:57:22 +08:00
This commit is contained in:
stefanocasazza
2016-09-20 15:40:52 +02:00
parent fc24169677
commit 58edeb9b26
71 changed files with 1434 additions and 1086 deletions

View File

@@ -30,8 +30,7 @@
#define USP_JSON_stringify(json,class_name,obj) ((json).toJSON(UJsonTypeHandler<class_name>(obj)), USP_JSON_PUTS(json))
#define USP_JSON_OBJ_stringify(class_name,obj) {UValue _jtmp(OBJECT_VALUE); _jtmp.toJSON(UJsonTypeHandler<class_name>(obj)); USP_JSON_PUTS(_jtmp);}
#define USP_JSON_ARRAY_stringify(class_name,obj) {UValue _jtmp( ARRAY_VALUE); _jtmp.toJSON(UJsonTypeHandler<class_name>(obj)); USP_JSON_PUTS(_jtmp);}
#define USP_JSON_OBJ_stringify(class_name,obj) {UValue _jtmp; _jtmp.toJSON(UJsonTypeHandler<class_name>(obj)); USP_JSON_PUTS(_jtmp);}
#define USP_XML_PUTS(string) \
((void)UClientImage_Base::_encoded->reserve((string).size() * 4), \