This commit is contained in:
Jonas Zeunert
2018-07-10 22:20:29 +02:00
parent 40d1b629fc
commit 6650b38d2e
29 changed files with 74 additions and 886 deletions

View File

@@ -6,7 +6,8 @@
*/
#include "InputDriver.h"
using namespace Input;
namespace Input
{
InputDriver::InputDriver(IEventNotifier* event_notifier, IDetector* detector) :
event_notifier(event_notifier), detector(detector)
@@ -33,4 +34,6 @@ void InputDriver::unregister_event_handler(IEventHandler* handler)
event_notifier->unregister_event_handler(handler);
}
}