From 17f1723d7e266a0ddc49c43790a00f57aa37fb21 Mon Sep 17 00:00:00 2001 From: Jonas Zeunert Date: Thu, 31 May 2018 19:56:29 +0200 Subject: [PATCH] refactor with logging --- FlippR-Driver/src/input/InputDriver.hpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/FlippR-Driver/src/input/InputDriver.hpp b/FlippR-Driver/src/input/InputDriver.hpp index 95701a1..b57c4b8 100644 --- a/FlippR-Driver/src/input/InputDriver.hpp +++ b/FlippR-Driver/src/input/InputDriver.hpp @@ -14,7 +14,15 @@ namespace Input class InputDriver { - void register_event_handler(EventHandler* handler); + InputDriver() + { + + } + + void register_event_handler(EventHandler* handler) + { + ; + } void unregister_event_handler(EventHandler* handler); };