mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-02 00:38:26 +01:00
24 lines
355 B
C++
24 lines
355 B
C++
// Copyright Benoit Blanchon 2014
|
|
// MIT License
|
|
//
|
|
// Arduino JSON library
|
|
// https://github.com/bblanchon/ArduinoJson
|
|
|
|
#pragma once
|
|
|
|
#include "../JsonValue.hpp"
|
|
#include "../JsonBuffer.hpp"
|
|
|
|
namespace ArduinoJson {
|
|
namespace Internals {
|
|
|
|
class JsonArrayNode {
|
|
public:
|
|
JsonArrayNode() : next(NULL) {}
|
|
|
|
JsonArrayNode* next;
|
|
JsonValue value;
|
|
};
|
|
}
|
|
}
|