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

@@ -162,6 +162,11 @@ namespace ArduinoJson
return type == JSON_ARRAY;
}
bool isObject()
{
return type == JSON_OBJECT;
}
void addChild(JsonNode* childToAdd);
void removeChild(JsonNode* childToRemove);