blob: e7f2c5ee3ebded5d252f411f635cbf065a91e6f6 (
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
|
// $Id$
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;
}
|