// -*- C++ -*- // // $Id: Stream.inl 96061 2012-08-16 09:36:07Z mcorino $ ACE_BEGIN_VERSIONED_NAMESPACE_DECL template ACE_INLINE ACE_Module * ACE_Stream::head (void) { ACE_TRACE ("ACE_Stream::head"); return this->stream_head_; } template ACE_INLINE ACE_Module * ACE_Stream::tail (void) { ACE_TRACE ("ACE_Stream::tail"); return this->stream_tail_; } template ACE_INLINE int ACE_Stream::wait (void) { 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 (void) const { ACE_TRACE ("ACE_Stream_Iterator::done"); return this->next_ == 0; } template int ACE_Stream_Iterator::advance (void) { ACE_TRACE ("ACE_Stream_Iterator::advance"); this->next_ = this->next_->next (); return this->next_ != 0; } ACE_END_VERSIONED_NAMESPACE_DECL