Fixed inner object bug

This commit is contained in:
Benoit Blanchon
2014-09-28 21:04:59 +02:00
parent bc44c36385
commit e190b20ae1
5 changed files with 47 additions and 15 deletions

View File

@ -5,6 +5,7 @@ class JsonBuffer;
enum JsonNodeType
{
JSON_UNDEFINED,
JSON_PROXY,
JSON_NULL,
JSON_ARRAY,
JSON_OBJECT,
@ -42,5 +43,10 @@ struct JsonNode
JsonBuffer* buffer;
} asObject;
struct
{
JsonNode* target;
} asProxy;
} content;
};