|
Gaudi Framework, version v23r2 |
| Home | Generated: Thu Jun 28 2012 |
00001 #ifndef GAUDIKERNEL_ISTATUSCODESVC_H 00002 #define GAUDIKERNEL_ISTATUSCODESVC_H 00003 00004 #include "GaudiKernel/IService.h" 00005 00006 #include <string> 00007 00008 class GAUDI_API IStatusCodeSvc: virtual public IService { 00009 00010 public: 00012 DeclareInterfaceID(IStatusCodeSvc,2,0); 00013 00014 virtual void regFnc(const std::string &fnc, 00015 const std::string &lib) = 0; 00016 00017 virtual void list() const = 0; 00018 00019 virtual bool suppressCheck() const = 0; 00020 00021 }; 00022 00023 #endif