mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +00:00
31 lines
561 B
C++
31 lines
561 B
C++
// -*- C++ -*-
|
|
//
|
|
// $Id: Intrusive_List_Node.inl 80826 2008-03-04 14:51:23Z wotte $
|
|
|
|
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
|