JsonHashTable is now a wrapper on to of JsonValue

This commit is contained in:
Benoît Blanchon
2014-07-17 12:59:26 +02:00
parent b6e3a37ad9
commit f2579397d6
5 changed files with 60 additions and 48 deletions

View File

@ -32,6 +32,8 @@ namespace ArduinoJson
operator char*();
operator JsonArray();
operator JsonHashTable();
JsonValue operator[](const char* key);
};
}
}