Struct that represents a node in the Queue. More...
#include <GenericQueue.h>
Public Member Functions | |
| NodeT (T v) | |
| Constructor.  More... | |
| ~NodeT () | |
| Destructor.  More... | |
Public Attributes | |
| NodeT< T > * | m_next | 
| Pointer to the next node.  More... | |
| T | m_value | 
| Stored value.  More... | |
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 | 
Destructor.
Definition at line 65 of file GenericQueue.h.
References te::common::NodeT< T >::m_next.
| 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< T >::add(), te::common::QueueT< T >::getValue(), te::common::QueueT< T >::insert(), te::common::QueueT< T >::position(), te::common::QueueT< T >::remove(), and te::common::NodeT< T >::~NodeT().
| T te::common::NodeT< T >::m_value | 
Stored value.
Definition at line 48 of file GenericQueue.h.
Referenced by te::common::QueueT< T >::getValue(), te::common::QueueT< T >::position(), and te::common::QueueT< T >::remove().