forked from bblanchon/ArduinoJson
Added JsonObjectIterator
This commit is contained in:
@ -70,4 +70,9 @@ JsonNode* JsonObject::getOrCreateNodeAt(const char* key)
|
||||
addChild(newKeyNode);
|
||||
|
||||
return newValueNode;
|
||||
}
|
||||
|
||||
JsonObjectIterator JsonObject::begin()
|
||||
{
|
||||
return JsonObjectIterator(_node->getContainerChild());
|
||||
}
|
Reference in New Issue
Block a user