rename again because i forgot something
This commit is contained in:
@@ -18,9 +18,9 @@ namespace input
|
||||
namespace detail
|
||||
{
|
||||
|
||||
Detector::Detector(std::unique_ptr<InputPinController> input_gpio_interface, std::vector<std::shared_ptr<DistributingEvent>> events)
|
||||
Detector::Detector(std::unique_ptr<InputPinController> input_pin_controller, std::vector<std::shared_ptr<DistributingEvent>> events)
|
||||
:
|
||||
input_pin_controller(std::move(input_gpio_interface)), events(std::move(events)), is_running(true)
|
||||
input_pin_controller(std::move(input_pin_controller)), events(std::move(events)), is_running(true)
|
||||
{
|
||||
this->detect_thread = std::thread(&Detector::detect, this);
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ class Detector : public input::Detector
|
||||
{
|
||||
|
||||
public:
|
||||
Detector(std::unique_ptr<input::InputPinController> input_gpio_interface, std::vector<std::shared_ptr<DistributingEvent>> events);
|
||||
Detector(std::unique_ptr<input::InputPinController> input_pin_controller, std::vector<std::shared_ptr<DistributingEvent>> events);
|
||||
~Detector() override;
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user