Added JsonArray::getBool() and JsonHashTable::getBool()

This commit is contained in:
Benoit Blanchon
2014-01-12 20:30:24 +01:00
parent 9e91fb3f46
commit 9c7ff38bbf
6 changed files with 30 additions and 0 deletions

View File

@ -53,6 +53,11 @@ JsonArray JsonHashTable::getArray(char* key)
return JsonArray(json, getToken(key));
}
bool JsonHashTable::getBool(char* key)
{
return getBoolFromToken(getToken(key));
}
double JsonHashTable::getDouble(char* key)
{
return getDoubleFromToken(getToken(key));