Removed usages of JsonNodeIterator

This commit is contained in:
Benoit Blanchon
2014-10-24 18:31:50 +02:00
parent 68fb03577c
commit 1f6cd8e56e
16 changed files with 84 additions and 40 deletions

12
test/Printers.cpp Normal file
View 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;
}