#include <ofile_stream.hpp>
Inherits std::ostream.
Public Member Functions | |
OFileStream (const std::string &filename) | |
~OFileStream () |
Definition at line 23 of file ofile_stream.hpp.
OFileStream::OFileStream | ( | const std::string & | filename | ) |
Definition at line 24 of file ofile_stream.cpp.
00024 : 00025 std::ostream(new OFileStreambuf(filename)) 00026 { 00027 }
OFileStream::~OFileStream | ( | ) |