|
Gaudi Framework, version v21r9 |
| Home | Generated: 3 May 2010 |
#include <string>#include <map>#include <iostream>#include "GaudiKernel/Kernel.h"


Go to the source code of this file.
Classes | |
| class | IssueSeverity |
Defines | |
| #define | GAUDIKERNEL_ISSUESEVERITY_H 1 |
| #define | ISSUE(x, y) IssueSeverity(x,__LINE__,__FILE__,y) |
| #define | STATUSCODE(z, x, y) StatusCode(z,ISSUE(x,y)) |
Functions | |
| std::ostream & | operator<< (std::ostream &os, const IssueSeverity &rhs) |
| #define GAUDIKERNEL_ISSUESEVERITY_H 1 |
Definition at line 2 of file IssueSeverity.h.
| #define ISSUE | ( | x, | |||
| y | ) | IssueSeverity(x,__LINE__,__FILE__,y) |
Definition at line 12 of file IssueSeverity.h.
| #define STATUSCODE | ( | z, | |||
| x, | |||||
| y | ) | StatusCode(z,ISSUE(x,y)) |
Definition at line 13 of file IssueSeverity.h.
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const IssueSeverity & | rhs | |||
| ) |
Definition at line 157 of file IssueSeverity.h.
00157 { 00158 os << "ISSUE: level " << rhs.getLevel() << " from: " << rhs.getOrigin() 00159 << " msg: " << rhs.getMsg(); 00160 return os; 00161 }