| 506 | } |
| 507 | ~NotificationsHandlerImpl() override { disconnect(); } |
| 508 | void disconnect() override |
| 509 | { |
| 510 | if (m_proxy) { |
| 511 | m_signals.UnregisterSharedValidationInterface(m_proxy); |
| 512 | m_proxy.reset(); |
| 513 | } |
| 514 | } |
| 515 | ValidationSignals& m_signals; |
| 516 | std::shared_ptr<NotificationsProxy> m_proxy; |
| 517 | }; |
nothing calls this directly
no test coverage detected