// Intrusive_List.inl,v 4.1 2001/08/01 23:39:25 coryan Exp 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_; }