Files
thirdparty-ArduinoJson/include/ArduinoJson/Internals/JsonArrayNode.hpp
2014-10-26 21:18:09 +01:00

20 lines
287 B
C++

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