| 61 | } |
| 62 | |
| 63 | std::string CNotificationSystem::GetTypeString(const int type) |
| 64 | { |
| 65 | if (type < sizeof(typeTable) / sizeof(typeTable[0])) |
| 66 | return typeTable[type].name; |
| 67 | return "unknown"; |
| 68 | } |
| 69 | |
| 70 | std::string CNotificationSystem::GetStatusString(const int status) |
| 71 | { |
no outgoing calls
no test coverage detected