// ArduinoJson - arduinojson.org // Copyright Benoit Blanchon 2014-2018 // MIT License #pragma once #include // for NULL #include "JsonBufferAllocated.hpp" namespace ArduinoJson { namespace Internals { // A node for a singly-linked list. // Used by List and its iterators. template struct ListNode : public Internals::JsonBufferAllocated { ListNode() throw() : next(NULL) {} ListNode *next; T content; }; } }