// $Id$ template ACE_INLINE int ACE_Intrusive_List::empty (void) const { return this->head_ == 0; } template ACE_INLINE T * ACE_Intrusive_List::head (void) const { return this->head_; } template ACE_INLINE T * ACE_Intrusive_List::tail (void) const { return this->tail_; }