Files
ArduinoJson/JsonParser/JsonHashTable.cpp

15 lines
292 B
C++
Raw Normal View History

2014-07-03 13:58:08 +02:00
/*
* Arduino JSON library
* Benoit Blanchon 2014 - MIT License
*/
2014-01-11 15:05:35 +01:00
#include "JsonHashTable.h"
#include "JsonArray.h"
#include "JsonValue.h"
2014-01-11 15:05:35 +01:00
2014-07-03 14:00:51 +02:00
using namespace ArduinoJson::Parser;
2014-01-11 15:05:35 +01:00
2014-07-16 13:53:56 +02:00
DEPRECATED JsonArray JsonHashTable::getArray(const char* key)
{
return (JsonArray) (*this)[key];
2014-01-11 15:05:35 +01:00
}