|
Gaudi Framework, version v22r0 |
| Home | Generated: 9 Feb 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.
00100 : m_stream(&str) { 00101 }
| 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.
00106 { 00107 // Generic implementation for ostreams: 00108 (*m_stream) << stream.buffPointer(); 00109 m_stream->write(stream.data(), stream.buffPointer()); 00110 }
std::ostream* StreamBuffer::Ostream::m_stream [private] |
Definition at line 97 of file StreamBuffer.h.