Moved implemntation of operator[] into JsonObject

This commit is contained in:
Benoit Blanchon
2014-07-21 10:52:35 +02:00
parent f565a9b1b7
commit 3e8861b1a0
5 changed files with 69 additions and 73 deletions

View File

@ -33,13 +33,16 @@ namespace ArduinoJson
return isArray();
}
JsonValue operator[](int index)
{
return JsonValue::operator[](index);
}
int size()
{
return isArray() ? childrenCount() : 0;
}
JsonValue operator[](int index);
JsonArrayIterator begin()
{
return isArray() ? firstChild() : null();