rename again because i forgot something

This commit is contained in:
Jonas Zeunert
2019-11-07 21:12:10 +01:00
parent f63dc97270
commit ea1a7d4d15
2 changed files with 3 additions and 3 deletions

View File

@@ -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);

View File

@@ -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: