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
|
|
|
|
|
2015-05-23 15:32:50 +02:00
|
|
|
#include <ArduinoJson.h>
|
2014-11-03 14:38:46 +01:00
|
|
|
#include <ostream>
|
|
|
|
|
|
|
|
namespace ArduinoJson {
|
2015-05-23 15:32:50 +02:00
|
|
|
std::ostream& operator<<(std::ostream& os, const JsonVariant& v);
|
|
|
|
std::ostream& operator<<(std::ostream& os, const JsonArray& v);
|
|
|
|
std::ostream& operator<<(std::ostream& os, const JsonObjectSubscript& v);
|
|
|
|
std::ostream& operator<<(std::ostream& os, const JsonArraySubscript& v);
|
2014-11-03 14:38:46 +01:00
|
|
|
}
|