rename again because i forgot something
This commit is contained in:
@@ -18,9 +18,9 @@ namespace input
|
|||||||
namespace detail
|
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);
|
this->detect_thread = std::thread(&Detector::detect, this);
|
||||||
|
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ class Detector : public input::Detector
|
|||||||
{
|
{
|
||||||
|
|
||||||
public:
|
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;
|
~Detector() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|||||||
Reference in New Issue
Block a user