|
Gaudi Framework, version v21r9 |
| Home | Generated: 3 May 2010 |
#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 |
Definition at line 95 of file StreamBuffer.h.
| StreamBuffer::Ostream::Ostream | ( | std::ostream & | str | ) | [inline] |
Standard constructor: pass reference to stream object.
Definition at line 99 of file StreamBuffer.h.
00099 : m_stream(&str) { 00100 }
| virtual StreamBuffer::Ostream::~Ostream | ( | ) | [inline, virtual] |
| virtual void StreamBuffer::Ostream::dump | ( | StreamBuffer & | stream | ) | [inline, virtual] |
Output dumper.
Reimplemented from StreamBuffer::DataIO.
Definition at line 105 of file StreamBuffer.h.
00105 { 00106 // Generic implementation for ostreams: 00107 (*m_stream) << stream.buffPointer(); 00108 m_stream->write(stream.data(), stream.buffPointer()); 00109 }
std::ostream* StreamBuffer::Ostream::m_stream [private] |
Definition at line 96 of file StreamBuffer.h.