// -*- C++ -*- ACE_BEGIN_VERSIONED_NAMESPACE_DECL template ACE_INLINE T* ACE_Intrusive_List_Node::prev () 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 () const { return this->next_; } template ACE_INLINE void ACE_Intrusive_List_Node::next (T *x) { this->next_ = x; } ACE_END_VERSIONED_NAMESPACE_DECL