The Gaudi Framework  v29r0 (ff2e7097)
GslErrorPrint.h
Go to the documentation of this file.
1 #ifndef GAUDIGSL_GSLERRORPrint_H
2 #define GAUDIGSL_GSLERRORPrint_H 1
3 // Include files
4 // from STL
5 #include <string>
6 // from GaudiKernel
7 #include "GaudiKernel/AlgTool.h"
8 // from GaudiGSL
9 #include "GaudiGSL/GslError.h"
11 // forward declaration
12 
22 struct GslErrorPrint : extends<AlgTool, IGslErrorHandler> {
23 
26  using extends::extends;
27 
34  StatusCode handle( const GslError& error ) const override;
35 };
36 
37 // ============================================================================
38 // The END
39 // ============================================================================
40 #endif // GAUDIGSL_GSLERRORPrint_H
41 // ============================================================================
Helper class to represent GSL errors.
Definition: GslError.h:16
Concrete GSL eror handler It is just prints the GSL errors.
Definition: GslErrorPrint.h:22
StatusCode handle(const GslError &error) const override
handle the GSL error
MsgStream & error() const
shortcut for the method msgStream(MSG::ERROR)
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:28
Base class used to extend a class implementing other interfaces.
Definition: extends.h:10