| 119 | } |
| 120 | |
| 121 | void Checkable::RegisterNotification(const Notification::Ptr& notification) |
| 122 | { |
| 123 | std::unique_lock<std::mutex> lock(m_NotificationMutex); |
| 124 | m_Notifications.insert(notification); |
| 125 | } |
| 126 | |
| 127 | void Checkable::UnregisterNotification(const Notification::Ptr& notification) |
| 128 | { |
no test coverage detected