refactoring to h and cpp

This commit is contained in:
Jonas Zeunert
2018-06-15 00:16:29 +02:00
parent d027d32e2f
commit bacf59ba71
9 changed files with 156 additions and 134 deletions

View File

@@ -12,8 +12,7 @@
#include "../utilities/config.h"
namespace Input
{
using namespace Input;
Detector::Detector(InputGPIOInterface* input_gpio_interface, std::map<char, Event> events, IEventNotifier* event_notifier) :
input_gpio_interface(input_gpio_interface), events(events), is_running(true), event_notifier(event_notifier)
@@ -69,5 +68,3 @@ bool Detector::check_inputs(char& address)
}
return false;
}
}