ACE_NS_Node< T > Class Template Reference

Implementation element in a Queue, List, and Stack. More...

#include <Naming_Service_Container.h>

Collaboration diagram for ACE_NS_Node< T >:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 ~ACE_NS_Node (void)
 This isn't necessary, but it keeps some compilers happy.


Private Member Functions

 ACE_NS_Node (const T &i, ACE_NS_Node< T > *n)
 ACE_NS_Node (ACE_NS_Node< T > *n=0, int=0)
 ACE_NS_Node (const ACE_NS_Node< T > &n)

Private Attributes

ACE_NS_Node< T > * next_
 Pointer to next element in the list of s.

item_
 Current value of the item in this node.


Friends

class ACE_Unbounded_List< T >
class ACE_Unbounded_List_Iterator< T >

Detailed Description

template<class T>
class ACE_NS_Node< T >

Implementation element in a Queue, List, and Stack.

Definition at line 46 of file Naming_Service_Container.h.


Constructor & Destructor Documentation

template<class T>
TAO_BEGIN_VERSIONED_NAMESPACE_DECL ACE_NS_Node< T >::~ACE_NS_Node void   ) 
 

This isn't necessary, but it keeps some compilers happy.

Definition at line 30 of file Naming_Service_Container.cpp.

00031 {
00032 }

template<class T>
ACE_NS_Node< T >::ACE_NS_Node const T &  i,
ACE_NS_Node< T > *  n
[private]
 

Definition at line 36 of file Naming_Service_Container.cpp.

00037   : next_ (n),
00038     item_ (i)
00039 {
00040   // ACE_TRACE ("ACE_NS_Node<T>::ACE_NS_Node");
00041 }

template<class T>
ACE_NS_Node< T >::ACE_NS_Node ACE_NS_Node< T > *  n = 0,
int  = 0
[private]
 

Definition at line 44 of file Naming_Service_Container.cpp.

00045   : next_ (n)
00046 {
00047   // ACE_TRACE ("ACE_NS_Node<T>::ACE_NS_Node");
00048 }

template<class T>
ACE_NS_Node< T >::ACE_NS_Node const ACE_NS_Node< T > &  n  )  [private]
 

Definition at line 51 of file Naming_Service_Container.cpp.

00052   : next_ (s.next_),
00053     item_ (s.item_)
00054 {
00055   // ACE_TRACE ("ACE_NS_Node<T>::ACE_NS_Node");
00056 }


Friends And Related Function Documentation

template<class T>
friend class ACE_Unbounded_List< T > [friend]
 

Definition at line 49 of file Naming_Service_Container.h.

template<class T>
friend class ACE_Unbounded_List_Iterator< T > [friend]
 

Definition at line 50 of file Naming_Service_Container.h.


Member Data Documentation

template<class T>
T ACE_NS_Node< T >::item_ [private]
 

Current value of the item in this node.

Definition at line 67 of file Naming_Service_Container.h.

Referenced by ACE_Unbounded_List< T >::copy_nodes().

template<class T>
ACE_NS_Node<T>* ACE_NS_Node< T >::next_ [private]
 

Pointer to next element in the list of s.

Definition at line 64 of file Naming_Service_Container.h.

Referenced by ACE_Unbounded_List< T >::copy_nodes(), ACE_Unbounded_List< T >::delete_nodes(), and ACE_Unbounded_List< T >::remove().


The documentation for this class was generated from the following files:
Generated on Sun Jan 27 16:16:08 2008 for TAO_CosNaming by doxygen 1.3.6