A single data chunk in the queue. More...
Public Member Functions | |
Element (const T &rData) | |
Constructor. | |
Public Attributes | |
T | m_Data |
Copy of the data attached to this entry. | |
Element * | m_pNext |
Pointer to the next element in the singly linked list. | |
A single data chunk in the queue.
This private data chunk is the representation of each element in the Queue
|
inline |
Constructor.
Make a copy of the data passed in by reference and clear the forward link.
rData | Reference to a data chunk to copy into the queue |
T Burger::Queue< T >::Element::m_Data |
Copy of the data attached to this entry.
Element* Burger::Queue< T >::Element::m_pNext |
Pointer to the next element in the singly linked list.