summaryrefslogtreecommitdiff
path: root/protocols/ace/INet/FTP_IOStream.inl
blob: d365c3eaeed3c3e496b407009fafda32bc313c66 (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
// -*- C++ -*-
//
// $Id$

ACE_BEGIN_VERSIONED_NAMESPACE_DECL

namespace ACE
{
  namespace FTP
  {

    ACE_INLINE
    StreamBuffer* IOS::rdbuf ()
      {
        return &this->streambuf_;
      }

    ACE_INLINE
    void OStream::set_interceptor (StreamBuffer::interceptor_type& interceptor)
      {
        this->rdbuf ()->set_interceptor (interceptor);
      }

    ACE_INLINE
    void IStream::set_interceptor (StreamBuffer::interceptor_type& interceptor)
      {
        this->rdbuf ()->set_interceptor (interceptor);
      }

  }
}

ACE_END_VERSIONED_NAMESPACE_DECL