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 33 of file Naming_Service_Container.cpp.

00034 {
00035 }

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

Definition at line 39 of file Naming_Service_Container.cpp.

00040   : next_ (n),
00041     item_ (i)
00042 {
00043   // ACE_TRACE ("ACE_NS_Node<T>::ACE_NS_Node");
00044 }

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

Definition at line 47 of file Naming_Service_Container.cpp.

00048   : next_ (n)
00049 {
00050   // ACE_TRACE ("ACE_NS_Node<T>::ACE_NS_Node");
00051 }

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

Definition at line 54 of file Naming_Service_Container.cpp.

00055   : next_ (s.next_),
00056     item_ (s.item_)
00057 {
00058   // ACE_TRACE ("ACE_NS_Node<T>::ACE_NS_Node");
00059 }


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 Thu Nov 9 13:57:34 2006 for TAO_CosNaming by doxygen 1.3.6