mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 00:38:27 +01:00
Rename Node into ListNode
This commit is contained in:
22
include/ArduinoJson/Internals/ListNode.hpp
Normal file
22
include/ArduinoJson/Internals/ListNode.hpp
Normal file
@@ -0,0 +1,22 @@
|
||||
// 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;
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user