// -*- C++ -*- ACE_BEGIN_VERSIONED_NAMESPACE_DECL template ACE_INLINE ACE_Module * ACE_Stream::head () { ACE_TRACE ("ACE_Stream::head"); return this->stream_head_; } template ACE_INLINE ACE_Module * ACE_Stream::tail () { ACE_TRACE ("ACE_Stream::tail"); return this->stream_tail_; } template ACE_INLINE int ACE_Stream::wait () { ACE_TRACE ("ACE_Stream::wait"); return this->final_close_.wait (); } template ACE_INLINE int ACE_Stream_Iterator::next (const ACE_Module *&mod) { ACE_TRACE ("ACE_Stream_Iterator::next"); mod = this->next_; return this->next_ != 0; } template ACE_INLINE int ACE_Stream_Iterator::done () const { ACE_TRACE ("ACE_Stream_Iterator::done"); return this->next_ == 0; } template int ACE_Stream_Iterator::advance () { ACE_TRACE ("ACE_Stream_Iterator::advance"); this->next_ = this->next_->next (); return this->next_ != 0; } ACE_END_VERSIONED_NAMESPACE_DECL