00001 // $Id: Intrusive_List.inl,v 1.1.1.1 2001/12/04 14:33:02 chad Exp $ 00002 00003 template<class T> ACE_INLINE int 00004 ACE_Intrusive_List<T>::empty (void) const 00005 { 00006 return this->head_ == 0; 00007 } 00008 00009 template<class T> ACE_INLINE T * 00010 ACE_Intrusive_List<T>::head (void) const 00011 { 00012 return this->head_; 00013 } 00014 00015 template<class T> ACE_INLINE T * 00016 ACE_Intrusive_List<T>::tail (void) const 00017 { 00018 return this->tail_; 00019 }
1.2.14 written by Dimitri van Heesch,
© 1997-2002