Files
ArduinoJson/test/Printers.cpp
2014-10-24 18:31:50 +02:00

12 lines
268 B
C++

// Copyright Benoit Blanchon 2014
// MIT License
//
// Arduino JSON library
// https://github.com/bblanchon/ArduinoJson
#include "Printers.hpp"
std::ostream& operator<<(std::ostream& os, const ArduinoJson::JsonValue& v) {
os << "JsonValue"; // TODO
return os;
}