JsonArray.cpp 252 B

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