JsonArray.cpp 273 B

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