2 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
4 template <class T> ACE_INLINE size_t
5 ACE_Unbounded_Queue<T>::size (void) const
7 return this->cur_size_;
10 template <class T> ACE_INLINE bool
11 ACE_Unbounded_Queue<T>::is_empty (void) const
13 // ACE_TRACE ("ACE_Unbounded_Queue<T>::is_empty");
14 return this->head_ == this->head_->next_;
17 template <class T> ACE_INLINE bool
18 ACE_Unbounded_Queue<T>::is_full (void) const
20 // ACE_TRACE ("ACE_Unbounded_Queue<T>::is_full");
21 return false; // We should implement a "node of last resort for this..."
24 ACE_END_VERSIONED_NAMESPACE_DECL