Files
thirdparty-ArduinoJson/include/ArduinoJson/Internals/JsonArrayNode.hpp
Benoit Blanchon 5443e90baf Cleaning up...
2014-10-31 12:02:15 +01:00

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;
};
}
}