// -*- C++ -*- // // $Id: Intrusive_List.inl 91688 2010-09-09 11:21:50Z johnnyw $ #include ACE_BEGIN_VERSIONED_NAMESPACE_DECL template ACE_INLINE bool ACE_Intrusive_List::is_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_; } 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