Added JsonObjectIterator

This commit is contained in:
Benoit Blanchon
2014-10-22 21:56:38 +02:00
parent 7e98d136f4
commit 40ac60b941
5 changed files with 121 additions and 1 deletions

View File

@ -70,4 +70,9 @@ JsonNode* JsonObject::getOrCreateNodeAt(const char* key)
addChild(newKeyNode);
return newValueNode;
}
JsonObjectIterator JsonObject::begin()
{
return JsonObjectIterator(_node->getContainerChild());
}