![]() |
|
|
Generated: 8 Jan 2009 |
00001 #define PERSISTENCYSVC_DETPERSISTENCYSVC_CPP 00002 00003 #include <iostream> 00004 00005 // Implementation specific definitions 00006 #include "GaudiKernel/SvcFactory.h" 00007 #include "GaudiKernel/ISvcLocator.h" 00008 #include "DetPersistencySvc.h" 00009 00010 // Instantiation of a static factory class used by clients to create 00011 // instances of this service 00012 DECLARE_SERVICE_FACTORY(DetPersistencySvc) 00013 00014 // Finalize the service. 00015 StatusCode DetPersistencySvc::finalize() 00016 { 00017 StatusCode status = PersistencySvc::finalize(); 00018 return status; 00019 } 00020 00021 // Initialize the service. 00022 StatusCode DetPersistencySvc::initialize() 00023 { 00024 StatusCode status = PersistencySvc::initialize(); 00025 return status; 00026 } 00027 00028 // Standard Constructor 00029 DetPersistencySvc::DetPersistencySvc(const std::string& name, ISvcLocator* svc) 00030 : PersistencySvc(name, svc) 00031 {} 00032 00033 // Standard Destructor 00034 DetPersistencySvc::~DetPersistencySvc() 00035 {}