forked from bblanchon/ArduinoJson
Moved implemntation of operator[] into JsonObject
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user