Added JsonArrayIterator

This commit is contained in:
Benoit Blanchon
2014-10-22 17:59:59 +02:00
parent 9946abf731
commit d842e246c9
6 changed files with 87 additions and 5 deletions

View File

@ -1,6 +1,7 @@
#pragma once
#include "JsonContainer.hpp"
#include "JsonArrayIterator.hpp"
namespace ArduinoJson
{
@ -32,5 +33,12 @@ namespace ArduinoJson
{
return _node && _node->isArray();
}
JsonArrayIterator begin();
JsonArrayIterator end()
{
return JsonArrayIterator(0);
}
};
}