Files
thirdparty-ArduinoJson/include/ArduinoJson/Internals/JsonArrayNode.hpp
2014-11-04 09:51:25 +01:00

22 lines
322 B
C++

// Copyright Benoit Blanchon 2014
// MIT License
//
// Arduino JSON library
// https://github.com/bblanchon/ArduinoJson
#pragma once
#include "../JsonVariant.hpp"
namespace ArduinoJson {
namespace Internals {
struct JsonArrayNode {
JsonArrayNode() : next(NULL) {}
JsonArrayNode* next;
JsonVariant value;
};
}
}