00001 // $Id: Intrusive_List_Node.inl,v 1.1.1.1 2001/12/04 14:33:02 chad Exp $ 00002 00003 template<class T> ACE_INLINE T* 00004 ACE_Intrusive_List_Node<T>::prev (void) const 00005 { 00006 return this->prev_; 00007 } 00008 00009 template<class T> ACE_INLINE void 00010 ACE_Intrusive_List_Node<T>::prev (T *x) 00011 { 00012 this->prev_ = x; 00013 } 00014 00015 template<class T> ACE_INLINE T* 00016 ACE_Intrusive_List_Node<T>::next (void) const 00017 { 00018 return this->next_; 00019 } 00020 00021 template<class T> ACE_INLINE void 00022 ACE_Intrusive_List_Node<T>::next (T *x) 00023 { 00024 this->next_ = x; 00025 }
1.2.14 written by Dimitri van Heesch,
© 1997-2002