#include <string>
#include <map>
#include <iostream>
Include dependency graph for IssueSeverity.h:
This graph shows which files directly or indirectly include this file:
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 11 of file IssueSeverity.h.
#define STATUSCODE | ( | z, | |||
x, | |||||
y | ) | StatusCode(z,ISSUE(x,y)) |
Definition at line 12 of file IssueSeverity.h.
std::ostream& operator<< | ( | std::ostream & | os, | |
const IssueSeverity & | rhs | |||
) |
Definition at line 156 of file IssueSeverity.h.
00156 { 00157 os << "ISSUE: level " << rhs.getLevel() << " from: " << rhs.getOrigin() 00158 << " msg: " << rhs.getMsg(); 00159 return os; 00160 }