JsonHashTable.cpp 292 B

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