#include <Node.h>
Inheritance diagram for ACE_Node< T >:
Public Methods | |
~ACE_Node (void) | |
This isn't necessary, but it keeps some compilers happy. | |
Private Methods | |
ACE_Node (const T &i, ACE_Node< T > *n) | |
ACE_Node (ACE_Node< T > *n=0, int=0) | |
ACE_Node (const ACE_Node< T > &n) | |
Private Attributes | |
ACE_Node< T > * | next_ |
Pointer to next element in the list of <ACE_Node>s. | |
T | item_ |
Current value of the item in this node. | |
int | deleted_ |
Flag that indicates whether this node is deleted. | |
Friends | |
class | ACE_Unbounded_Queue< T > |
class | ACE_Unbounded_Queue_Iterator< T > |
class | ACE_Unbounded_Set< T > |
class | ACE_Unbounded_Set_Iterator< T > |
class | ACE_Unbounded_Set_Const_Iterator< T > |
class | ACE_Unbounded_Set_Ex< T > |
class | ACE_Unbounded_Set_Ex_Iterator< T > |
class | ACE_Unbounded_Set_Ex_Const_Iterator< T > |
class | ACE_Unbounded_Stack< T > |
class | ACE_Unbounded_Stack_Iterator< T > |
|
This isn't necessary, but it keeps some compilers happy.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Flag that indicates whether this node is deleted.
|
|
Current value of the item in this node.
|
|
Pointer to next element in the list of <ACE_Node>s.
|