Added JsonObjectIterator

This commit is contained in:
Benoit Blanchon
2014-07-18 22:40:50 +02:00
parent b75d32e980
commit 851d21e08c
8 changed files with 158 additions and 16 deletions

View File

@ -22,10 +22,9 @@ namespace ArduinoJson
}
const JsonArrayIterator& operator++()
void operator++()
{
token = token.nextSibling();
return *this;
}
JsonValue operator*() const