blob: 2c513b4584f4855604a4ca837e590e27f21220dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// $Id$
template<class T> ACE_INLINE int
ACE_Intrusive_List<T>::empty (void) const
{
return this->head_ == 0;
}
template<class T> ACE_INLINE T *
ACE_Intrusive_List<T>::head (void) const
{
return this->head_;
}
template<class T> ACE_INLINE T *
ACE_Intrusive_List<T>::tail (void) const
{
return this->tail_;
}
|