forked from bblanchon/ArduinoJson
15 lines
295 B
C++
15 lines
295 B
C++
// Copyright Benoit Blanchon 2014
|
|
// MIT License
|
|
//
|
|
// Arduino JSON library
|
|
// https://github.com/bblanchon/ArduinoJson
|
|
|
|
#pragma once
|
|
|
|
#include <ArduinoJson/JsonValue.hpp>
|
|
#include <ostream>
|
|
|
|
namespace ArduinoJson {
|
|
std::ostream& operator<<(std::ostream& os, const ArduinoJson::JsonValue& v);
|
|
}
|