mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-13 18:46:35 +02:00
15 lines
299 B
C++
15 lines
299 B
C++
// Copyright Benoit Blanchon 2014
|
|
// MIT License
|
|
//
|
|
// Arduino JSON library
|
|
// https://github.com/bblanchon/ArduinoJson
|
|
|
|
#pragma once
|
|
|
|
#include <ArduinoJson/JsonVariant.hpp>
|
|
#include <ostream>
|
|
|
|
namespace ArduinoJson {
|
|
std::ostream& operator<<(std::ostream& os, const ArduinoJson::JsonVariant& v);
|
|
}
|