// -*- C++ -*- // // $Id: Intrusive_List_Node.inl 80826 2008-03-04 14:51:23Z wotte $ ACE_BEGIN_VERSIONED_NAMESPACE_DECL template ACE_INLINE T* ACE_Intrusive_List_Node::prev (void) const { return this->prev_; } template ACE_INLINE void ACE_Intrusive_List_Node::prev (T *x) { this->prev_ = x; } template ACE_INLINE T* ACE_Intrusive_List_Node::next (void) const { return this->next_; } template ACE_INLINE void ACE_Intrusive_List_Node::next (T *x) { this->next_ = x; } ACE_END_VERSIONED_NAMESPACE_DECL