JsonObject.cpp 277 B

123456789101112131415
  1. /*
  2. * Arduino JSON library
  3. * Benoit Blanchon 2014 - MIT License
  4. */
  5. #include "JsonArray.h"
  6. #include "JsonObject.h"
  7. #include "JsonValue.h"
  8. using namespace ArduinoJson::Parser;
  9. DEPRECATED JsonArray JsonObject::getArray(const char* key)
  10. {
  11. return operator[](key);
  12. }