| 30 | CCriticalSection cs_mapAlerts; |
| 31 | |
| 32 | void CUnsignedAlert::SetNull() |
| 33 | { |
| 34 | nVersion = 1; |
| 35 | nRelayUntil = 0; |
| 36 | nExpiration = 0; |
| 37 | nID = 0; |
| 38 | nCancel = 0; |
| 39 | setCancel.clear(); |
| 40 | nMinVer = 0; |
| 41 | nMaxVer = 0; |
| 42 | setSubVer.clear(); |
| 43 | nPriority = 0; |
| 44 | |
| 45 | strComment.clear(); |
| 46 | strStatusBar.clear(); |
| 47 | strReserved.clear(); |
| 48 | } |
| 49 | |
| 50 | std::string CUnsignedAlert::ToString() const |
| 51 | { |
no test coverage detected