forked from bblanchon/ArduinoJson
Cleaning up...
This commit is contained in:
@ -9,7 +9,6 @@
|
||||
#include <ArduinoJson/JsonValue.hpp>
|
||||
#include <ArduinoJson/JsonArray.hpp>
|
||||
#include <ArduinoJson/JsonObject.hpp>
|
||||
#include "Printers.hpp"
|
||||
|
||||
using namespace ArduinoJson;
|
||||
|
||||
|
@ -9,7 +9,6 @@
|
||||
#include <ArduinoJson/JsonObject.hpp>
|
||||
#include <ArduinoJson/JsonValue.hpp>
|
||||
#include <ArduinoJson/StaticJsonBuffer.hpp>
|
||||
#include "Printers.hpp"
|
||||
|
||||
using namespace ArduinoJson;
|
||||
|
||||
|
@ -9,7 +9,6 @@
|
||||
#include <ArduinoJson/JsonArray.hpp>
|
||||
#include <ArduinoJson/JsonObject.hpp>
|
||||
#include <ArduinoJson/JsonValue.hpp>
|
||||
#include "Printers.hpp"
|
||||
|
||||
using namespace ArduinoJson;
|
||||
|
||||
|
@ -1,12 +0,0 @@
|
||||
// Copyright Benoit Blanchon 2014
|
||||
// MIT License
|
||||
//
|
||||
// Arduino JSON library
|
||||
// https://github.com/bblanchon/ArduinoJson
|
||||
|
||||
#include "Printers.hpp"
|
||||
|
||||
std::ostream& operator<<(std::ostream& os, const ArduinoJson::JsonValue&) {
|
||||
os << "JsonValue"; // TODO
|
||||
return os;
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
// Copyright Benoit Blanchon 2014
|
||||
// MIT License
|
||||
//
|
||||
// Arduino JSON library
|
||||
// https://github.com/bblanchon/ArduinoJson
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <ArduinoJson/ForwardDeclarations.hpp>
|
||||
#include <ostream>
|
||||
|
||||
std::ostream& operator<<(std::ostream& os, const ArduinoJson::JsonValue& v);
|
Reference in New Issue
Block a user