forked from bblanchon/ArduinoJson
Removed usages of JsonNodeIterator
This commit is contained in:
12
test/Printers.cpp
Normal file
12
test/Printers.cpp
Normal file
@ -0,0 +1,12 @@
|
||||
// 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& v) {
|
||||
os << "JsonValue"; // TODO
|
||||
return os;
|
||||
}
|
Reference in New Issue
Block a user