// -*- C++ -*- ACE_BEGIN_VERSIONED_NAMESPACE_DECL template ACE_INLINE size_t ACE_Unbounded_Queue::size () const { return this->cur_size_; } template ACE_INLINE bool ACE_Unbounded_Queue::is_empty () const { // ACE_TRACE ("ACE_Unbounded_Queue::is_empty"); return this->head_ == this->head_->next_; } template ACE_INLINE bool ACE_Unbounded_Queue::is_full () const { // ACE_TRACE ("ACE_Unbounded_Queue::is_full"); return false; // We should implement a "node of last resort for this..." } ACE_END_VERSIONED_NAMESPACE_DECL