mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-17 20:42:24 +02:00
15 lines
277 B
C++
15 lines
277 B
C++
/*
|
|
* Arduino JSON library
|
|
* Benoit Blanchon 2014 - MIT License
|
|
*/
|
|
|
|
#include "JsonArray.h"
|
|
#include "JsonObject.h"
|
|
#include "JsonValue.h"
|
|
|
|
using namespace ArduinoJson::Parser;
|
|
|
|
DEPRECATED JsonArray JsonObject::getArray(const char* key)
|
|
{
|
|
return operator[](key);
|
|
} |