Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

ACE_Intrusive_List_Node Class Template Reference

Implement the requirements for ACE_Intrusive_List. More...

#include <Intrusive_List_Node.h>

List of all members.

Public Methods

Accesors and modifiers to the next and previous pointers
T* prev (void) const
void prev (T *)
T* next (void) const
void next (T *)

Protected Methods

 ACE_Intrusive_List_Node (void)
 Constructor. More...


Private Attributes

T* prev_
 Head and tail of the list.

T* next_


Detailed Description

template<class T> template class ACE_Intrusive_List_Node

Implement the requirements for ACE_Intrusive_List.

The class should be used as follows:

class My_Object : public ACE_Intrusive_List_Node_Node<My_Object> {
....
};

However, ACE is supported on platforms that would surely get confused using such templates, the class is provided as a helper for our lucky users that only need portability to modern C++ compilers.


Constructor & Destructor Documentation

template<classT>
ACE_Intrusive_List_Node<T>::ACE_Intrusive_List_Node<T> ( void ) [inline, protected]
 

Constructor.

The constructor is protected, because only derived classes should be instantiated.


Member Function Documentation

template<classT>
ACE_INLINE void ACE_Intrusive_List_Node< T >::next ( T * x )
 

template<classT>
ACE_INLINE T * ACE_Intrusive_List_Node< T >::next ( void ) const
 

template<classT>
ACE_INLINE void ACE_Intrusive_List_Node< T >::prev ( T * x )
 

template<classT>
ACE_INLINE T * ACE_Intrusive_List_Node< T >::prev ( void ) const
 


Member Data Documentation

template<classT>
T * ACE_Intrusive_List_Node<T>::next_ [private]
 

template<classT>
T * ACE_Intrusive_List_Node<T>::prev_ [private]
 

Head and tail of the list.


The documentation for this class was generated from the following files:
Generated at Sat Dec 1 11:02:23 2001 for ACE by doxygen1.2.3 written by Dimitri van Heesch, © 1997-2000