Printers.cpp 266 B

123456789101112
  1. // Copyright Benoit Blanchon 2014
  2. // MIT License
  3. //
  4. // Arduino JSON library
  5. // https://github.com/bblanchon/ArduinoJson
  6. #include "Printers.hpp"
  7. std::ostream& operator<<(std::ostream& os, const ArduinoJson::JsonValue&) {
  8. os << "JsonValue"; // TODO
  9. return os;
  10. }