Renamed JsonHashTable into JsonObject

This commit is contained in:
Benoit Blanchon
2014-07-18 16:46:01 +02:00
parent daa62b3737
commit b75d32e980
12 changed files with 45 additions and 47 deletions

View File

@ -22,7 +22,7 @@ namespace ArduinoJson
namespace Parser
{
class JsonArray;
class JsonHashTable;
class JsonObject;
class JsonValue
{
@ -44,7 +44,7 @@ namespace ArduinoJson
operator long();
operator char*();
operator JsonArray();
operator JsonHashTable();
operator JsonObject();
JsonValue operator[](int index);
JsonValue operator[](const char*key);