From 4c593c9d29f699a1821e549588f148336aab0ecb Mon Sep 17 00:00:00 2001 From: Jonas Zeunert Date: Thu, 31 May 2018 20:12:45 +0200 Subject: [PATCH] forward declaration event_handler --- FlippR-Driver/src/input/InputDriver.hpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/FlippR-Driver/src/input/InputDriver.hpp b/FlippR-Driver/src/input/InputDriver.hpp index 3e4c2be..4b82aa2 100644 --- a/FlippR-Driver/src/input/InputDriver.hpp +++ b/FlippR-Driver/src/input/InputDriver.hpp @@ -8,11 +8,15 @@ #ifndef SRC_INPUT_INPUTDRIVER_HPP_ #define SRC_INPUT_INPUTDRIVER_HPP_ -#include "EventHandler.hpp" - namespace Input { +class EventHandler +{ +public: + void handle(Event& event); +}; + class InputDriver {