The Gaudi Framework  v30r3 (a5ef0a68)
OutputStreamAgent.cpp
Go to the documentation of this file.
1 //====================================================================
2 // OutputStreamAgent.cpp
3 //--------------------------------------------------------------------
4 //
5 // Package : (The LHCb PersistencySvc service)
6 //
7 // Description: Implementation of the OutputStream Agent
8 //
9 // Author : M.Frank
10 // Created : 13/1/99
11 // Changes :
12 //
13 //====================================================================
14 #define PERSISTENCYSVC_OUTPUTSTREAMAGENT_CPP
15 
16 // Framework includes
17 #include "OutputStreamAgent.h"
19 #include "OutputStream.h"
20 
22 OutputStreamAgent::OutputStreamAgent( OutputStream* OutputStream ) : m_OutputStream( OutputStream ) {}
23 
26 {
27  return m_OutputStream->collect( pRegistry, level );
28 }
A small to stream Data I/O.
Definition: OutputStream.h:29
virtual bool collect(IRegistry *dir, int level)
Store agent's classback.
bool analyse(IRegistry *dir, int level) override
Analysis callback.
The IRegistry represents the entry door to the environment any data object residing in a transient da...
Definition: IRegistry.h:22
OutputStreamAgent(OutputStream *OutputStream)
Standard Constructor.
OutputStream * m_OutputStream
Reference to data writer.