server/dep/acelite/ace/Intrusive_List_Node.inl
Salja f4be15a7af Some missing from merge.
Signed-off-by: Salja <salja2012@hotmail.de>
2020-02-16 02:50:23 +00:00

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