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 static const SvcFactory<DetPersistencySvc> s_factory; 00013 const ISvcFactory& DetPersistencySvcFactory = s_factory; 00014 00015 // Finalize the service. 00016 StatusCode DetPersistencySvc::finalize() 00017 { 00018 StatusCode status = PersistencySvc::finalize(); 00019 return status; 00020 } 00021 00022 // Initialize the service. 00023 StatusCode DetPersistencySvc::initialize() 00024 { 00025 StatusCode status = PersistencySvc::initialize(); 00026 return status; 00027 } 00028 00029 // Standard Constructor 00030 DetPersistencySvc::DetPersistencySvc(const std::string& name, ISvcLocator* svc) 00031 : PersistencySvc(name, svc) 00032 {} 00033 00034 // Standard Destructor 00035 DetPersistencySvc::~DetPersistencySvc() 00036 {}
1.2.3 written by Dimitri van Heesch,
© 1997-2000