mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 00:38:27 +01:00
42 lines
917 B
C++
42 lines
917 B
C++
// Copyright Benoit Blanchon 2014
|
|
// MIT License
|
|
//
|
|
// Arduino JSON library
|
|
// https://github.com/bblanchon/ArduinoJson
|
|
|
|
#pragma once
|
|
|
|
#include "NodeIterator.hpp"
|
|
#include "NodeConstIterator.hpp"
|
|
#include "../JsonBuffer.hpp"
|
|
|
|
namespace ArduinoJson {
|
|
namespace Internals {
|
|
|
|
template <typename T>
|
|
class List {
|
|
public:
|
|
typedef T value_type;
|
|
typedef Node<T> node_type;
|
|
typedef NodeIterator<T> iterator;
|
|
typedef NodeConstIterator<T> const_iterator;
|
|
|
|
List(JsonBuffer *buffer) : _buffer(buffer), _firstNode(NULL) {}
|
|
|
|
bool success() const { return _buffer != NULL; }
|
|
int size() const;
|
|
|
|
iterator begin() { return iterator(_firstNode); }
|
|
iterator end() { return iterator(NULL); }
|
|
|
|
const_iterator begin() const { return const_iterator(_firstNode); }
|
|
const_iterator end() const { return const_iterator(NULL); }
|
|
|
|
protected:
|
|
node_type *createNode();
|
|
|
|
JsonBuffer *_buffer;
|
|
node_type *_firstNode;
|
|
};
|
|
}
|
|
} |