2 #include "ace/Global_Macros.h"
4 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
6 template <class T, class C> ACE_INLINE bool
7 ACE_Unbounded_Set_Ex<T,C>::is_empty () const
9 ACE_TRACE ("ACE_Unbounded_Set_Ex<T>::is_empty");
10 return this->head_ == this->head_->next_;
13 template <class T, class C> ACE_INLINE bool
14 ACE_Unbounded_Set_Ex<T, C>::is_full () const
16 ACE_TRACE ("ACE_Unbounded_Set_Ex<T>::is_full");
17 return 0; // We should implement a "node of last resort for this..."
20 ACE_END_VERSIONED_NAMESPACE_DECL