mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-25 16:27:33 +02:00
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