Files
ArduinoJson/test/Printers.hpp

16 lines
381 B
C++
Raw Permalink Normal View History

2015-02-07 16:05:48 +01:00
// Copyright Benoit Blanchon 2014-2015
2014-11-03 14:38:46 +01:00
// MIT License
//
// Arduino JSON library
// https://github.com/bblanchon/ArduinoJson
#pragma once
2014-11-04 09:51:25 +01:00
#include <ArduinoJson/JsonVariant.hpp>
2014-11-03 14:38:46 +01:00
#include <ostream>
namespace ArduinoJson {
2014-11-04 09:51:25 +01:00
std::ostream& operator<<(std::ostream& os, const ArduinoJson::JsonVariant& v);
2014-11-04 13:06:47 +01:00
std::ostream& operator<<(std::ostream& os, const ArduinoJson::JsonArray& v);
2014-11-03 14:38:46 +01:00
}