changed to inputgpiointerface
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
#include <thread>
|
||||
#include <map>
|
||||
|
||||
#include "../utilities/GPIOInterface.hpp"
|
||||
#include "../utilities/InputGPIOInterface.h"
|
||||
#include "InputEvent.h"
|
||||
#include "InputEventNotifier.h"
|
||||
|
||||
@@ -36,7 +36,7 @@ class Detector
|
||||
{
|
||||
|
||||
public:
|
||||
Detector(GPIOInterface* in_gpio_interface, std::map<char, InputEvent> events, InputEventNotifier* input_event_notifier);
|
||||
Detector(InputGPIOInterface* in_gpio_interface, std::map<char, InputEvent> events, InputEventNotifier* input_event_notifier);
|
||||
~Detector();
|
||||
|
||||
private:
|
||||
@@ -44,7 +44,7 @@ private:
|
||||
bool check_inputs(char& address);
|
||||
|
||||
private:
|
||||
GPIOInterface* in_gpio_interface;
|
||||
InputGPIOInterface* in_gpio_interface;
|
||||
|
||||
std::map<char, InputEvent> input_events;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user