[7297] Fixed profession spells sorting in trainer spell list at client.
[getmangos.git] / dep / ACE_wrappers / ace / Intrusive_List_Node.inl
blob52c4f7dec1b5294e6262f4d9cebb028cd378b4cc
1 // -*- C++ -*-
2 //
3 // $Id: Intrusive_List_Node.inl 80826 2008-03-04 14:51:23Z wotte $
5 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
7 template<class T> ACE_INLINE T*
8 ACE_Intrusive_List_Node<T>::prev (void) const
10   return this->prev_;
13 template<class T> ACE_INLINE void
14 ACE_Intrusive_List_Node<T>::prev (T *x)
16   this->prev_ = x;
19 template<class T> ACE_INLINE T*
20 ACE_Intrusive_List_Node<T>::next (void) const
22   return this->next_;
25 template<class T> ACE_INLINE void
26 ACE_Intrusive_List_Node<T>::next (T *x)
28   this->next_ = x;
31 ACE_END_VERSIONED_NAMESPACE_DECL