blob: 9406b02fb26794759d95c36394c91bb6664793f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/* -*- C++ -*- */
// $Id$
// Stream.i
template <ACE_SYNCH_1> ACE_INLINE ACE_Module<ACE_SYNCH_2> *
ACE_Stream<ACE_SYNCH_2>::head (void)
{
ACE_TRACE ("ACE_Stream<ACE_SYNCH_2>::head");
return this->stream_head_;
}
template <ACE_SYNCH_1> ACE_INLINE ACE_Module<ACE_SYNCH_2> *
ACE_Stream<ACE_SYNCH_2>::tail (void)
{
ACE_TRACE ("ACE_Stream<ACE_SYNCH_2>::tail");
return this->stream_tail_;
}
template <ACE_SYNCH_1> ACE_INLINE int
ACE_Stream<ACE_SYNCH_2>::wait (void)
{
ACE_TRACE ("ACE_Stream<ACE_SYNCH_2>::wait");
return this->final_close_.wait ();
}
template <ACE_SYNCH_1> ACE_INLINE int
ACE_Stream_Iterator<ACE_SYNCH_2>::next (const ACE_Module<ACE_SYNCH_2> *&mod)
{
ACE_TRACE ("ACE_Stream_Iterator<ACE_SYNCH_2>::next");
mod = this->next_;
return this->next_ != 0;
}
template <ACE_SYNCH_1> ACE_INLINE int
ACE_Stream_Iterator<ACE_SYNCH_2>::done (void) const
{
ACE_TRACE ("ACE_Stream_Iterator<ACE_SYNCH_2>::done");
return this->next_ == 0;
}
template <ACE_SYNCH_1> int
ACE_Stream_Iterator<ACE_SYNCH_2>::advance (void)
{
ACE_TRACE ("ACE_Stream_Iterator<ACE_SYNCH_2>::advance");
this->next_ = this->next_->next ();
return this->next_ != 0;
}
|