// Intrusive_List_Node.inl,v 4.1 2001/08/01 23:39:25 coryan Exp 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; }