|
Gaudi Framework, version v21r9 |
| Home | Generated: 3 May 2010 |
#include <GslError.h>

Public Member Functions | |
| GslError (const std::string &r="", const std::string &f="", const int l=0, const int c=0) | |
| constructor | |
| bool | operator< (const GslError &right) const |
| comparison (ordering) criteria | |
Public Attributes | |
| std::string | reason |
| error message ('reason') | |
| std::string | file |
| file name | |
| int | line |
| line number | |
| int | code |
| error code (GSL) | |
Definition at line 17 of file GslError.h.
| GslError::GslError | ( | const std::string & | r = "", |
|
| const std::string & | f = "", |
|||
| const int | l = 0, |
|||
| const int | c = 0 | |||
| ) | [inline] |
comparison (ordering) criteria
Definition at line 35 of file GslError.h.
00036 { 00037 return 00038 code < right.code ? true : 00039 right.code < code ? false : 00040 reason < right.reason ? true : 00041 right.reason < reason ? false : 00042 file < right.file ? true : 00043 right.file < file ? false : line < right.line ; 00044 };
| int GslError::line |
| int GslError::code |