#include <CondTools/Hcal/interface/StreamOutFormatTarget.h>
Public Member Functions | |
virtual void | flush () |
virtual void | writeChars (const XMLByte *const toWrite, const unsigned int count, XMLFormatter *const formatter) |
constructors and destructor | |
StreamOutFormatTarget (std::ostream &fStream) | |
~StreamOutFormatTarget () | |
Private Member Functions | |
StreamOutFormatTarget & | operator= (const StreamOutFormatTarget &) |
StreamOutFormatTarget (const StreamOutFormatTarget &) | |
Private Attributes | |
std::ostream * | mStream |
Definition at line 30 of file StreamOutFormatTarget.h.
XERCES_CPP_NAMESPACE_BEGIN StreamOutFormatTarget::StreamOutFormatTarget | ( | std::ostream & | fStream | ) |
Definition at line 26 of file StreamOutFormatTarget.cc.
References mStream.
00026 { 00027 mStream = &fStream; 00028 }
StreamOutFormatTarget::~StreamOutFormatTarget | ( | ) |
StreamOutFormatTarget::StreamOutFormatTarget | ( | const StreamOutFormatTarget & | ) | [private] |
void StreamOutFormatTarget::flush | ( | ) | [virtual] |
Definition at line 33 of file StreamOutFormatTarget.cc.
References mStream.
00034 { 00035 mStream->flush(); 00036 }
StreamOutFormatTarget& StreamOutFormatTarget::operator= | ( | const StreamOutFormatTarget & | ) | [private] |
std::ostream* StreamOutFormatTarget::mStream [private] |
Definition at line 49 of file StreamOutFormatTarget.h.
Referenced by flush(), StreamOutFormatTarget(), and writeChars().