|
Gaudi Framework, version v21r8 |
| Home | Generated: 17 Mar 2010 |
#include <OutputStreamAgent.h>


Public Member Functions | |
| OutputStreamAgent (OutputStream *OutputStream) | |
| Standard Constructor. | |
| virtual | ~OutputStreamAgent () |
| Standard Destructor. | |
| virtual bool | analyse (IRegistry *dir, int level) |
| Analysis callback. | |
Private Attributes | |
| OutputStream * | m_OutputStream |
| Reference to data writer. | |
Definition at line 30 of file OutputStreamAgent.h.
| OutputStreamAgent::OutputStreamAgent | ( | OutputStream * | OutputStream | ) |
Standard Constructor.
Definition at line 22 of file OutputStreamAgent.cpp.
00023 : m_OutputStream(OutputStream) 00024 { 00025 }
| OutputStreamAgent::~OutputStreamAgent | ( | ) | [virtual] |
Analysis callback.
Implements IDataStoreAgent.
Definition at line 32 of file OutputStreamAgent.cpp.
00032 { 00033 return m_OutputStream->collect(pRegistry, level); 00034 }
OutputStream* OutputStreamAgent::m_OutputStream [private] |