summaryrefslogtreecommitdiff
path: root/ACE/ace/Intrusive_List_Node.inl
blob: d26a78a41798c9f7b8fcc03be72c8f09a6091611 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// -*- C++ -*-
ACE_BEGIN_VERSIONED_NAMESPACE_DECL

template<class T> ACE_INLINE T*
ACE_Intrusive_List_Node<T>::prev () const
{
  return this->prev_;
}

template<class T> ACE_INLINE void
ACE_Intrusive_List_Node<T>::prev (T *x)
{
  this->prev_ = x;
}

template<class T> ACE_INLINE T*
ACE_Intrusive_List_Node<T>::next () const
{
  return this->next_;
}

template<class T> ACE_INLINE void
ACE_Intrusive_List_Node<T>::next (T *x)
{
  this->next_ = x;
}

ACE_END_VERSIONED_NAMESPACE_DECL