#include <HTTP_IOStream.h>
Public Member Functions | |
IOS (std::iostream &stream, StreamBuffer::policy_type *policy=0) | |
~IOS () | |
StreamBuffer * | rdbuf () |
Protected Attributes | |
StreamBuffer | streambuf_ |
Definition at line 78 of file HTTP_IOStream.h.
ACE::HTTP::IOS::IOS | ( | std::iostream & | stream, | |
StreamBuffer::policy_type * | policy = 0 | |||
) |
Definition at line 72 of file HTTP_IOStream.cpp.
: streambuf_ (stream, policy) { ace_ios_init (&this->streambuf_); }
ACE::HTTP::IOS::~IOS | ( | ) |
Definition at line 78 of file HTTP_IOStream.cpp.
{ try { this->streambuf_.sync(); } catch (...) { } }
StreamBuffer * ACE::HTTP::IOS::rdbuf | ( | ) | [inline] |
Definition at line 13 of file HTTP_IOStream.inl.
{ return &this->streambuf_; }
StreamBuffer ACE::HTTP::IOS::streambuf_ [protected] |
Definition at line 88 of file HTTP_IOStream.h.