| 70 | } |
| 71 | |
| 72 | void DbConnection::EnableActiveChangedHandler() |
| 73 | { |
| 74 | if (!m_ActiveChangedHandler) { |
| 75 | ConfigObject::OnActiveChanged.connect([this](const ConfigObject::Ptr& object, const Value&) { UpdateObject(object); }); |
| 76 | m_ActiveChangedHandler = true; |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | void DbConnection::Resume() |
| 81 | { |
nothing calls this directly
no outgoing calls
no test coverage detected