Test that nested JsonObject can be stored

This commit is contained in:
Benoit Blanchon
2014-09-27 16:18:40 +02:00
parent bcc8cece24
commit bc44c36385
9 changed files with 114 additions and 5 deletions

View File

@ -4,6 +4,7 @@
#include "JsonNode.h"
class JsonObject;
class JsonValue;
struct JsonNode;
class JsonBuffer
@ -14,6 +15,8 @@ public:
// virtual ~JsonBuffer() = 0;
JsonObject createObject();
JsonValue createValue();
protected:
virtual JsonNode* allocateNode() = 0;