GTK+ IOStream
Beta
<< GTK+ >> add C++ IOStream operators to GTK+. Now with extra abilities ... like network serialisation
|
Defines a lug in a linked list The concept is simple, this Lug points to a next or previous Lug. You can ask for the next or prev. If the constructor is called with the old lug, it is linked as the prvious. More...
#include <LinkList.H>
Public Member Functions | |
Lug (void) | |
This is for the first element - links to itself. More... | |
Lug (Lug< TYPE > *oldOne) | |
Links to previous element and next element. More... | |
Lug * | getNext (void) |
Return a pointer to the next element. More... | |
Lug * | getPrev (void) |
Return a pointer to the previous element. More... | |
Public Attributes | |
Lug< TYPE > * | next |
Links to the next and prev elements in the list. More... | |
Lug< TYPE > * | prev |
TYPE | ptr |
Defines a lug in a linked list The concept is simple, this Lug points to a next or previous Lug. You can ask for the next or prev. If the constructor is called with the old lug, it is linked as the prvious.
TYPE | is the class or vairable type maintained by the linked list. |
Definition at line 34 of file LinkList.H.
This is for the first element - links to itself.
Definition at line 46 of file LinkList.H.
Links to previous element and next element.
Definition at line 54 of file LinkList.H.
Return a pointer to the next element.
Definition at line 68 of file LinkList.H.
Return a pointer to the previous element.
Definition at line 74 of file LinkList.H.
Links to the next and prev elements in the list.
Definition at line 41 of file LinkList.H.
Definition at line 43 of file LinkList.H.