The Gaudi Framework  v29r0 (ff2e7097)
OutputStreamAgent.h
Go to the documentation of this file.
1 //====================================================================
2 // OutputStreamAgent.h
3 //--------------------------------------------------------------------
4 //
5 // Package : (The LHCb PersistencySvc service)
6 //
7 // Description: Definition the OutputStream Agent
8 //
9 // Author : M.Frank
10 // Created : 13/1/99
11 // Changes :
12 //
13 //====================================================================
14 #ifndef PERSISTENCYSVC_OUTPUTSTREAMAGENT_H
15 #define PERSISTENCYSVC_OUTPUTSTREAMAGENT_H
16 
17 // Framework includes
19 // Foreward declarations
20 class IRegistry;
21 class OutputStream;
22 
30 class OutputStreamAgent : virtual public IDataStoreAgent
31 {
34 
35 public:
39  ~OutputStreamAgent() override = default;
41  bool analyse( IRegistry* dir, int level ) override;
42 };
43 #endif // PERSISTENCYSVC_OUTPUTSTREAMAGENT_H
A small to stream Data I/O.
Definition: OutputStream.h:29
bool analyse(IRegistry *dir, int level) override
Analysis callback.
~OutputStreamAgent() override=default
Standard Destructor.
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.
Generic data agent interface.
OutputStream * m_OutputStream
Reference to data writer.