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

@ -23,6 +23,11 @@ namespace ArduinoJson
JsonArray createNestedArray(const char* key);
JsonObject createNestedObject(const char* key);
bool success()
{
return _node && _node->isObject();
}
private:
Internals::JsonNode* getOrCreateNodeAt(const char* key);
};