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

@ -31,9 +31,12 @@ namespace ArduinoJson
bool success()
{
return isObject();
}
JsonValue operator[](const char* key)
{
return JsonValue::operator[](key);
}
JsonValue operator[](const char* key);
bool containsKey(const char* key)
{