|
Gaudi Framework, version v22r2 |
| Home | Generated: Tue May 10 2011 |
Writer for standard output streams. More...
#include <StreamBuffer.h>


Public Member Functions | |
| Ostream (std::ostream &str) | |
| Standard constructor: pass reference to stream object. | |
| virtual | ~Ostream () |
| Standard Destructor. | |
| virtual void | dump (StreamBuffer &stream) |
| Output dumper. | |
Private Attributes | |
| std::ostream * | m_stream |
Writer for standard output streams.
Definition at line 96 of file StreamBuffer.h.
| StreamBuffer::Ostream::Ostream | ( | std::ostream & | str ) | [inline] |
Standard constructor: pass reference to stream object.
Definition at line 100 of file StreamBuffer.h.
: m_stream(&str) { }
| virtual StreamBuffer::Ostream::~Ostream | ( | ) | [inline, virtual] |
| virtual void StreamBuffer::Ostream::dump | ( | StreamBuffer & | stream ) | [inline, virtual] |
Output dumper.
Reimplemented from StreamBuffer::DataIO.
Definition at line 106 of file StreamBuffer.h.
{
// Generic implementation for ostreams:
(*m_stream) << stream.buffPointer();
m_stream->write(stream.data(), stream.buffPointer());
}
std::ostream* StreamBuffer::Ostream::m_stream [private] |
Definition at line 97 of file StreamBuffer.h.