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