| 47 | { |
| 48 | |
| 49 | DeviceManagerBase::DeviceManagerBase(DeviceManagerHooks& hooks) |
| 50 | : DeviceManager(hooks), |
| 51 | _uevent_fd(-1), |
| 52 | _wakeup_fd(-1), |
| 53 | _enumeration(false) |
| 54 | { |
| 55 | setEnumerationOnlyMode(/*state=*/false); |
| 56 | } |
| 57 | |
| 58 | DeviceManagerBase::~DeviceManagerBase() = default; |
| 59 |
nothing calls this directly
no outgoing calls
no test coverage detected