// -*- C++ -*- #include ACE_BEGIN_VERSIONED_NAMESPACE_DECL template ACE_INLINE bool ACE_Intrusive_List::is_empty () const { return this->head_ == 0; } template ACE_INLINE T * ACE_Intrusive_List::head () const { return this->head_; } template ACE_INLINE T * ACE_Intrusive_List::tail () const { return this->tail_; } template ACE_INLINE void ACE_Intrusive_List::swap(ACE_Intrusive_List & rhs) { std::swap(head_, rhs.head_); std::swap(tail_, rhs.tail_); } ACE_END_VERSIONED_NAMESPACE_DECL