mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-02 00:38:26 +01:00
23 lines
315 B
C++
23 lines
315 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 Node {
|
|
Node() : next(NULL) {}
|
|
|
|
T content;
|
|
Node<T>* next;
|
|
};
|
|
}
|
|
}
|