IIssueLogger.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_IISSUELOGGER_H
2 #define GAUDIKERNEL_IISSUELOGGER_H
3 
4 #include "GaudiKernel/IService.h"
6 #include <string>
7 
8 
9 class GAUDI_API IIssueLogger: virtual public IService {
10 
11 public:
14 
15  virtual void report(IssueSeverity::Level level, const std::string& msg,
16  const std::string& origin) = 0;
17  virtual void report(const IssueSeverity& err) = 0;
18 
19 };
20 
21 #endif
STL class.
General service interface definition.
Definition: IService.h:18
DeclareInterfaceID(IService, 4, 0)
InterfaceID.
#define GAUDI_API
Definition: Kernel.h:107