|
Gaudi Framework, version v23r4 |
| Home | Generated: Mon Sep 17 2012 |
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 "GaudiKernel/IDataManagerSvc.h" 00018 #include "OutputStream.h" 00019 #include "OutputStreamAgent.h" 00020 00022 OutputStreamAgent::OutputStreamAgent(OutputStream* OutputStream) 00023 : m_OutputStream(OutputStream) 00024 { 00025 } 00026 00028 OutputStreamAgent::~OutputStreamAgent() { 00029 } 00030 00032 bool OutputStreamAgent::analyse(IRegistry* pRegistry, int level) { 00033 return m_OutputStream->collect(pRegistry, level); 00034 }