Struct that represents a node in the Queue. More...
#include <GenericQueue.h>
Public Member Functions | |
| NodeT (T v) | |
| Constructor. | |
| ~NodeT () | |
| Destructor. | |
Public Attributes | |
| NodeT< T > * | m_next |
| Pointer to the next node. | |
| T | m_value |
| Stored value. | |
Struct that represents a node in the Queue.
| T | Data type of the data stored in a node. |
Definition at line 46 of file GenericQueue.h.
|
inline |
|
inline |
| NodeT<T>* te::common::NodeT< T >::m_next |
Pointer to the next node.
Definition at line 49 of file GenericQueue.h.
Referenced by te::common::QueueT< QAction * >::getValue(), te::common::QueueT< QAction * >::insert(), NodeT(), te::common::QueueT< QAction * >::position(), te::common::QueueT< QAction * >::remove(), and ~NodeT().
| T te::common::NodeT< T >::m_value |
Stored value.
Definition at line 48 of file GenericQueue.h.
Referenced by te::common::QueueT< QAction * >::getValue(), NodeT(), te::common::QueueT< QAction * >::position(), and te::common::QueueT< QAction * >::remove().