mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 00:38:27 +01:00
23 lines
327 B
C++
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;
|
|
};
|
|
}
|
|
}
|