| 256 | } |
| 257 | |
| 258 | string NotificationCCTypes::GetEventParamNames |
| 259 | ( |
| 260 | NotificationEventParamTypes type |
| 261 | ) |
| 262 | { |
| 263 | switch (type) { |
| 264 | case NEPT_Location: |
| 265 | return "Location"; |
| 266 | break; |
| 267 | case NEPT_List: |
| 268 | return "List"; |
| 269 | break; |
| 270 | case NEPT_UserCodeReport: |
| 271 | return "UserCodeReport"; |
| 272 | break; |
| 273 | case NEPT_Byte: |
| 274 | return "Byte"; |
| 275 | break; |
| 276 | case NEPT_String: |
| 277 | return "String"; |
| 278 | break; |
| 279 | case NEPT_Time: |
| 280 | return "Duration"; |
| 281 | break; |
| 282 | }; |
| 283 | return "Unknown"; |
| 284 | } |
| 285 | |
| 286 | string NotificationCCTypes::GetAlarmType |
| 287 | ( |
nothing calls this directly
no outgoing calls
no test coverage detected