![]() |
|
|
Generated: 24 Nov 2008 |
00001 //==================================================================== 00002 // OutputStreamAgent.cpp 00003 //-------------------------------------------------------------------- 00004 // 00005 // Package : (The LHCb PersistencySvc service) 00006 // 00007 // Description: Implementation of the OutputStream Agent 00008 // 00009 // Author : M.Frank 00010 // Created : 13/1/99 00011 // Changes : 00012 // 00013 //==================================================================== 00014 #define PERSISTENCYSVC_OUTPUTSTREAMAGENT_CPP 00015 00016 // Framework includes 00017 #include "OutputStream.h" 00018 #include "OutputStreamAgent.h" 00019 00021 OutputStreamAgent::OutputStreamAgent(OutputStream* OutputStream) 00022 : m_OutputStream(OutputStream) 00023 { 00024 } 00025 00027 OutputStreamAgent::~OutputStreamAgent() { 00028 } 00029 00031 bool OutputStreamAgent::analyse(IRegistry* pRegistry, int level) { 00032 return m_OutputStream->collect(pRegistry, level); 00033 }