The parameterized class SListElement<E> represents the structure for elements of singly linked lists. More...
#include <ogdf/basic/SList.h>
Private Member Functions | |
| SListElement () | |
| Constructs an SListElement. | |
| SListElement (const E &x) | |
| Constructs an SListElement. | |
| SListElement (const E &x, SListElement< E > *next) | |
| Constructs an SListElement. | |
Private Attributes | |
| SListElement< E > * | m_next |
| Pointer to successor element. | |
| E | m_x |
| Stores the content. | |
Friends | |
| class | SListPure< E > |
| class | StackPure< E > |
| class | SListIterator< E > |
| class | SListConstIterator< E > |
The parameterized class SListElement<E> represents the structure for elements of singly linked lists.
| ogdf::SListElement< E >::SListElement | ( | ) | [inline, private] |
Constructs an SListElement.
| ogdf::SListElement< E >::SListElement | ( | const E & | x | ) | [inline, private] |
Constructs an SListElement.
| ogdf::SListElement< E >::SListElement | ( | const E & | x, |
| SListElement< E > * | next | ||
| ) | [inline, private] |
Constructs an SListElement.
friend class SListConstIterator< E > [friend] |
friend class SListIterator< E > [friend] |
SListElement<E>* ogdf::SListElement< E >::m_next [private] |
E ogdf::SListElement< E >::m_x [private] |