Parse empty object

This commit is contained in:
Benoit Blanchon
2014-10-21 21:11:30 +02:00
parent 0daf82eee2
commit 9c1b6b80aa
8 changed files with 64 additions and 7 deletions

View File

@@ -32,8 +32,8 @@ namespace ArduinoJson
JsonValue createValue();
JsonArray parseArray(char* json);
JsonValue parseValue(char* json);
JsonObject parseObject(char* json);
JsonValue parseValue(char* json); // TODO: remove
protected:
virtual void* allocateNode() = 0;