// -*- C++ -*- // // $Id$ ACE_BEGIN_VERSIONED_NAMESPACE_DECL 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_; } ACE_END_VERSIONED_NAMESPACE_DECL