summaryrefslogtreecommitdiff
path: root/ACE/protocols/ace/INet/FTP_IOStream.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/protocols/ace/INet/FTP_IOStream.inl')
-rw-r--r--ACE/protocols/ace/INet/FTP_IOStream.inl33
1 files changed, 33 insertions, 0 deletions
diff --git a/ACE/protocols/ace/INet/FTP_IOStream.inl b/ACE/protocols/ace/INet/FTP_IOStream.inl
new file mode 100644
index 00000000000..d365c3eaeed
--- /dev/null
+++ b/ACE/protocols/ace/INet/FTP_IOStream.inl
@@ -0,0 +1,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