| 24 | const MessageOrigin::Ptr&)> Checkable::OnNotificationSentToUser; |
| 25 | |
| 26 | void Checkable::ResetNotificationNumbers() |
| 27 | { |
| 28 | for (const Notification::Ptr& notification : GetNotifications()) { |
| 29 | ObjectLock olock(notification); |
| 30 | notification->ResetNotificationNumber(); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | void Checkable::SendNotifications(NotificationType type, const CheckResult::Ptr& cr, const String& author, const String& text) |
| 35 | { |
nothing calls this directly
no test coverage detected