#include <LinkedList.h>
Public Attributes | |
void * | content |
struct ListElementStruct * | next |
struct ListElementStruct * | prev |
Structure to hold all data for one list element
Definition at line 56 of file LinkedList.h.
void* ListElementStruct::content |
pointer to element content
Definition at line 60 of file LinkedList.h.
struct ListElementStruct * ListElementStruct::next |
pointer to next list element
Definition at line 58 of file LinkedList.h.
struct ListElementStruct* ListElementStruct::prev |
pointer to previous list element
Definition at line 58 of file LinkedList.h.