summaryrefslogtreecommitdiff
path: root/ace/Intrusive_List_Node.inl
blob: 0672be2f345e1bf65e099fabe64e046decf3c65a (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
29
30
31
// -*- C++ -*-
//
// $Id$

ACE_BEGIN_VERSIONED_NAMESPACE_DECL

template<class T> ACE_INLINE T*
ACE_Intrusive_List_Node<T>::prev (void) 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 (void) 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