| 9 | { |
| 10 | } |
| 11 | void ToggleInput::load(proto_ToggleInput config, std::shared_ptr<ToggleDevice> device, std::unique_ptr<Input> input) |
| 12 | { |
| 13 | m_input = std::move(input); |
| 14 | m_device = device; |
| 15 | m_last_toggled = 0; |
| 16 | } |
| 17 | void ToggleInput::setup() |
| 18 | { |
| 19 | m_input->setup(); |
nothing calls this directly
no outgoing calls
no test coverage detected