mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			530 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			530 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright Benoit Blanchon 2014-2017
 | |
| // MIT License
 | |
| //
 | |
| // Arduino JSON library
 | |
| // https://bblanchon.github.io/ArduinoJson/
 | |
| // If you like this project, please add a star!
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <stddef.h>  // for NULL
 | |
| 
 | |
| #include "JsonBufferAllocated.hpp"
 | |
| 
 | |
| namespace ArduinoJson {
 | |
| namespace Internals {
 | |
| 
 | |
| // A node for a singly-linked list.
 | |
| // Used by List<T> and its iterators.
 | |
| template <typename T>
 | |
| struct ListNode : public Internals::JsonBufferAllocated {
 | |
|   ListNode() : next(NULL) {}
 | |
| 
 | |
|   ListNode<T> *next;
 | |
|   T content;
 | |
| };
 | |
| }
 | |
| }
 |