#include <LinkedList.h>
Public Attributes | |
int | count |
ListElement * | current |
ListElement * | first |
ListElement * | last |
size_t | size |
Structure to hold all data for one list
Definition at line 67 of file LinkedList.h.
int List::count |
no of items
Definition at line 72 of file LinkedList.h.
ListElement * List::current |
current element in the list, for iteration
Definition at line 69 of file LinkedList.h.
ListElement* List::first |
first element in the list
Definition at line 69 of file LinkedList.h.
ListElement * List::last |
last element in the list
Definition at line 69 of file LinkedList.h.
size_t List::size |
heap storage used
Definition at line 73 of file LinkedList.h.