Changes to attempt to silence bcc64x
[ACE_TAO.git] / ACE / ace / Intrusive_List_Node.inl
blobd26a78a41798c9f7b8fcc03be72c8f09a6091611
1 // -*- C++ -*-
2 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
4 template<class T> ACE_INLINE T*
5 ACE_Intrusive_List_Node<T>::prev () const
7   return this->prev_;
10 template<class T> ACE_INLINE void
11 ACE_Intrusive_List_Node<T>::prev (T *x)
13   this->prev_ = x;
16 template<class T> ACE_INLINE T*
17 ACE_Intrusive_List_Node<T>::next () const
19   return this->next_;
22 template<class T> ACE_INLINE void
23 ACE_Intrusive_List_Node<T>::next (T *x)
25   this->next_ = x;
28 ACE_END_VERSIONED_NAMESPACE_DECL