![]() |
|
|
Generated: 8 Jan 2009 |
#include <OutputStreamAgent.h>


Definition at line 30 of file 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. | |
| OutputStreamAgent::OutputStreamAgent | ( | OutputStream * | OutputStream | ) |
Standard Constructor.
Definition at line 21 of file OutputStreamAgent.cpp.
00022 : m_OutputStream(OutputStream) 00023 { 00024 }
| OutputStreamAgent::~OutputStreamAgent | ( | ) | [virtual] |
| bool OutputStreamAgent::analyse | ( | IRegistry * | dir, | |
| int | level | |||
| ) | [virtual] |
Analysis callback.
Implements IDataStoreAgent.
Definition at line 31 of file OutputStreamAgent.cpp.
00031 { 00032 return m_OutputStream->collect(pRegistry, level); 00033 }
OutputStream* OutputStreamAgent::m_OutputStream [private] |