Gaudi Framework, version v21r9

Home   Generated: 3 May 2010

StreamBuffer::Ostream Class Reference

Writer for standard output streams. More...

#include <StreamBuffer.h>

Inheritance diagram for StreamBuffer::Ostream:

Inheritance graph
[legend]
Collaboration diagram for StreamBuffer::Ostream:

Collaboration graph
[legend]

List of all members.

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::ostreamm_stream


Detailed Description

Writer for standard output streams.

Definition at line 95 of file StreamBuffer.h.


Constructor & Destructor Documentation

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]

Standard Destructor.

Definition at line 102 of file StreamBuffer.h.

00102                         {
00103     }


Member Function Documentation

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     }


Member Data Documentation

Definition at line 96 of file StreamBuffer.h.


The documentation for this class was generated from the following file:

Generated at Mon May 3 12:26:36 2010 for Gaudi Framework, version v21r9 by Doxygen version 1.5.6 written by Dimitri van Heesch, © 1997-2004