ACE_Intrusive_List_Node< T > Class Template Reference

Implement the requirements for ACE_Intrusive_List. More...

#include <Intrusive_List_Node.h>

Collaboration diagram for ACE_Intrusive_List_Node< T >:

Collaboration graph
[legend]
List of all members.

Public Member Functions

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

Protected Member Functions

 ACE_Intrusive_List_Node (void)
 Constructor.


Private Attributes

T * prev_
 Head and tail of the list.

T * next_

Detailed Description

template<class T>
class ACE_Intrusive_List_Node< T >

Implement the requirements for ACE_Intrusive_List.

The class should be used as follows:

class My_Object : public ACE_Intrusive_List_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.

Definition at line 43 of file Intrusive_List_Node.h.


Constructor & Destructor Documentation

template<class T>
ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Intrusive_List_Node< T >::ACE_Intrusive_List_Node void   )  [protected]
 

Constructor.

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

Definition at line 19 of file Intrusive_List_Node.cpp.

00020   : prev_ (0)
00021   , next_ (0)
00022 {
00023 }


Member Function Documentation

template<class T>
ACE_INLINE void ACE_Intrusive_List_Node< T >::next T *   ) 
 

Definition at line 26 of file Intrusive_List_Node.inl.

00027 {
00028   this->next_ = x;
00029 }

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

Definition at line 20 of file Intrusive_List_Node.inl.

00021 {
00022   return this->next_;
00023 }

template<class T>
ACE_INLINE void ACE_Intrusive_List_Node< T >::prev T *   ) 
 

Definition at line 14 of file Intrusive_List_Node.inl.

00015 {
00016   this->prev_ = x;
00017 }

template<class T>
ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_INLINE T * ACE_Intrusive_List_Node< T >::prev void   )  const
 

Definition at line 8 of file Intrusive_List_Node.inl.

00009 {
00010   return this->prev_;
00011 }


Member Data Documentation

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

Definition at line 67 of file Intrusive_List_Node.h.

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

Head and tail of the list.

Definition at line 66 of file Intrusive_List_Node.h.


The documentation for this class was generated from the following files:
Generated on Thu Nov 9 11:23:35 2006 for ACE by doxygen 1.3.6