ReFRACtor
|
This allows filtering stream to created on top of an underlying ofstream. More...
#include <filtering_fstream.h>
Public Member Functions | |
virtual | ~FilteringOstream () |
Protected Member Functions | |
FilteringOstream (const std::string &Fname) | |
Constructor. More... | |
Protected Attributes | |
std::ofstream | f |
Underlying ofstream. More... | |
boost::iostreams::filtering_ostreambuf | sb |
Filtering streambuf. More... | |
This allows filtering stream to created on top of an underlying ofstream.
See boost::iostream documentation for details on how to create these. This class is intended to be used as a base class for other classes that assemble the proper filters.
Definition at line 14 of file filtering_fstream.h.
|
inlinevirtual |
Definition at line 16 of file filtering_fstream.h.
|
inlineprotected |
Constructor.
This opens the given file and sets up the stream buffer, but nothing is placed in the filter. The derived class should set up the streambuf.
Definition at line 25 of file filtering_fstream.h.
|
protected |
Underlying ofstream.
Definition at line 32 of file filtering_fstream.h.
|
protected |
Filtering streambuf.
Definition at line 38 of file filtering_fstream.h.