| 414 | } |
| 415 | |
| 416 | void DbObject::StateChangedHandler(const ConfigObject::Ptr& object) |
| 417 | { |
| 418 | DbObject::Ptr dbobj = GetOrCreateByObject(object); |
| 419 | |
| 420 | if (!dbobj) |
| 421 | return; |
| 422 | |
| 423 | dbobj->SendStatusUpdate(); |
| 424 | } |
| 425 | |
| 426 | void DbObject::VarsChangedHandler(const CustomVarObject::Ptr& object) |
| 427 | { |
nothing calls this directly
no test coverage detected