コード例 #1
0
ファイル: FTP_IOStream.cpp プロジェクト: CCJY/ACE
 IOS::IOS (std::iostream * stream)
   : streambuf_ (stream)
   {
     ace_ios_init (&this->streambuf_);
   }
コード例 #2
0
ファイル: HTTP_IOStream.cpp プロジェクト: akostrikov/ATCD
IOS::IOS (std::iostream& stream, StreamBuffer::policy_type* policy)
    : streambuf_ (stream, policy)
{
    ace_ios_init (&this->streambuf_);
}
コード例 #3
0
ファイル: Sock_IOStream.cpp プロジェクト: asdlei00/ACE
 Sock_IOSBase<ACE_SYNCH_USE>::Sock_IOSBase (stream_type* stream)
   : streambuf_ (stream)
   {
     ace_ios_init (&this->streambuf_);
   }