Merged JsonArrayIterator and JsonObjectIterator into a one template class

This commit is contained in:
Benoit Blanchon
2014-10-24 18:53:03 +02:00
parent 1f6cd8e56e
commit 582216e004
11 changed files with 45 additions and 69 deletions

View File

@@ -13,8 +13,10 @@ namespace ArduinoJson {
class JsonValue : public Internals::JsonNodeWrapper {
friend class JsonArray;
friend class JsonArrayIterator;
friend class JsonArrayConstIterator;
template <typename T>
friend class JsonIterator;
template <typename T>
friend class JsonConstIterator;
friend class JsonBuffer;
friend class JsonObject;
friend class JsonObjectKeyValue;