| 27 | namespace Events { |
| 28 | |
| 29 | Status::Status(const StatusMajor maj, const StatusMinor min, const std::string &msg) |
| 30 | { |
| 31 | reset(); |
| 32 | major = maj; |
| 33 | minor = min; |
| 34 | message = msg; |
| 35 | } |
| 36 | |
| 37 | Status::Status() |
| 38 | { |
nothing calls this directly
no test coverage detected