mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-29 18:27:37 +02:00
Added JsonArrayIterator
This commit is contained in:
@ -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);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user