Moved JsonObject._buffer into the JsonNode's content

This commit is contained in:
Benoit Blanchon
2014-09-27 15:34:34 +02:00
parent a7ff04db0e
commit bcc8cece24
5 changed files with 20 additions and 13 deletions

View File

@ -1,5 +1,7 @@
#pragma once
class JsonBuffer;
enum JsonNodeType
{
JSON_UNDEFINED,
@ -37,7 +39,8 @@ struct JsonNode
struct
{
JsonNode* child;
} asObjectNode;
JsonBuffer* buffer;
} asObject;
} content;
};