00001 /* -*- C++ -*- */ 00002 // $Id: Unbounded_Set.inl,v 1.1.1.1 2001/12/04 14:33:11 chad Exp $ 00003 00004 template <class T> ACE_INLINE int 00005 ACE_Unbounded_Set<T>::is_empty (void) const 00006 { 00007 ACE_TRACE ("ACE_Unbounded_Set<T>::is_empty"); 00008 return this->head_ == this->head_->next_; 00009 } 00010 00011 template <class T> ACE_INLINE int 00012 ACE_Unbounded_Set<T>::is_full (void) const 00013 { 00014 ACE_TRACE ("ACE_Unbounded_Set<T>::is_full"); 00015 return 0; // We should implement a "node of last resort for this..." 00016 }
1.2.14 written by Dimitri van Heesch,
© 1997-2002