2014-11-03 14:38:46 +01:00
|
|
|
// Copyright Benoit Blanchon 2014
|
|
|
|
// 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
|
|
|
}
|