Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions LList.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/*
LinkedList.h - V1.1 - Generic LinkedList implementation
Works better with FIFO, because LIFO will need to
search the entire List to find the last one;

For instructions, go to https://github.com/ivanseidel/LinkedList

Created by Ivan Seidel Gomes, March, 2013.
Released into the public domain.
*/

/*
This is a namespace wrapper to avoid collision with ESP Async WebServer's LinkedList class
include it instead of <LinkedList.h> and use Class types - LList, LNode
*/

#ifndef LList_h
#define LList_h
#include <iterator>

namespace LL{
#include <LinkedList.h>
}


template<typename T> using LNode = LL::ListNode<T>;
template<typename T> using LList = LL::LinkedList<T>;
#endif