blob: c6f38c7a9a0e1aa3145ceb3ffaf5ebec93541960 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* -*- C++ -*- */
// $Id$
template <class T> ACE_INLINE int
ACE_Unbounded_Set_Ex<T>::is_empty (void) const
{
ACE_TRACE ("ACE_Unbounded_Set_Ex<T>::is_empty");
return this->head_ == this->head_->next_;
}
template <class T> ACE_INLINE int
ACE_Unbounded_Set_Ex<T>::is_full (void) const
{
ACE_TRACE ("ACE_Unbounded_Set_Ex<T>::is_full");
return 0; // We should implement a "node of last resort for this..."
}
|