| 68 | } |
| 69 | |
| 70 | std::string CNotificationSystem::GetStatusString(const int status) |
| 71 | { |
| 72 | if (status < sizeof(statusTable) / sizeof(statusTable[0])) |
| 73 | return statusTable[status].name; |
| 74 | return "unknown"; |
| 75 | } |
| 76 | |
| 77 | void CNotificationSystem::QueueThread() |
| 78 | { |
no outgoing calls
no test coverage detected