Files
thirdparty-ArduinoJson/include/ArduinoJson/Internals/ListNode.hpp
2014-11-05 13:14:15 +01:00

23 lines
327 B
C++

// Copyright Benoit Blanchon 2014
// MIT License
//
// Arduino JSON library
// https://github.com/bblanchon/ArduinoJson
#pragma once
#include <stddef.h> // for NULL
namespace ArduinoJson {
namespace Internals {
template <typename T>
struct ListNode {
ListNode() : next(NULL) {}
ListNode<T>* next;
T content;
};
}
}