src/cx/json.h

changeset 1082
46cdc8689fc4
parent 1079
4e1872151fb6
child 1097
ef4a6cb318ec
equal deleted inserted replaced
1081:33c9d7e7d830 1082:46cdc8689fc4
229 struct cx_json_object_s { 229 struct cx_json_object_s {
230 /** 230 /**
231 * The key/value entries. 231 * The key/value entries.
232 */ 232 */
233 CX_ARRAY_DECLARE(CxJsonObjValue, values); 233 CX_ARRAY_DECLARE(CxJsonObjValue, values);
234 /**
235 * The original indices to reconstruct the order in which the members were added.
236 */
237 size_t *indices;
234 }; 238 };
235 239
236 /** 240 /**
237 * Structure for a key/value entry in a JSON object. 241 * Structure for a key/value entry in a JSON object.
238 */ 242 */

mercurial