|
virtual | ~CBotDoublyLinkedList () |
| Destructor. Be careful, destroys the whole linked list!
|
|
T * | GetNext () |
| Returns the next variable in the linked list.
|
|
T * | GetPrev () |
| Returns the previous variable in the linked list.
|
|
void | AddNext (T *elem) |
| Appends a new element at the end of the linked list.
|
|
|
T * | m_next = nullptr |
|
T * | m_prev = nullptr |
|
◆ ~CBotDoublyLinkedList()
Destructor. Be careful, destroys the whole linked list!
◆ GetNext()
Returns the next variable in the linked list.
- Returns
- Next element in the list, or nullptr if this was the last element
◆ GetPrev()
Returns the previous variable in the linked list.
- Returns
- Previous element in the list, or nullptr if this was the last element
◆ AddNext()
Appends a new element at the end of the linked list.
- Parameters
-
The documentation for this class was generated from the following file: