changed things

This commit is contained in:
Neeflix
2018-06-14 22:44:08 +02:00
parent 9a71ba938d
commit 785467a4b3
7 changed files with 72 additions and 35 deletions

View File

@@ -11,11 +11,11 @@
#ifndef INPUTEVENTHANDLER_H_
#define INPUTEVENTHANDLER_H_
#include "IEventHandler.h"
#include "Event.hpp"
#include "IInputDriver.h"
#include "../utilities/IEventHandler.h"
#include "../utilities/config.h"
namespace Input

View File

@@ -1,24 +0,0 @@
/*
* IEventHandler.h
*
* Created on: Jun 13, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
*/
#ifndef SRC_INPUT_IEVENTHANDLER_H_
#define SRC_INPUT_IEVENTHANDLER_H_
#include "Event.hpp"
namespace Input {
class IEventHandler
{
public:
virtual ~IEventHandler() = 0;
virtual void handle(Event& event) = 0;
};
}
#endif /* SRC_INPUT_IEVENTHANDLER_H_ */

View File

@@ -6,10 +6,10 @@
*/
#ifndef SRC_INPUT_INPUTDRIVER_HPP_
#define SRC_INPUT_INPUTDRIVER_HPP_
#include "IInputDriver.h"
#include "../utilities/config.h"
#include "IInputDriver.h"
#include "IDetector.h"
namespace Input