finished detector

This commit is contained in:
Jonas Zeunert
2018-04-27 00:50:54 +02:00
parent a181f12d20
commit 65bf3e5958
77 changed files with 10430 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
/*
* InputEventHandler.h
*
* Created on: Apr 5, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
*/
#ifndef INPUTEVENTHANDLER_H_
#define INPUTEVENTHANDLER_H_
#include "InputEvent.h"
namespace Input
{
class InputEventHandler
{
public:
virtual ~InputEventHandler(){};
virtual void handle(InputEvent& event) = 0;
};
}
#endif /* INPUTEVENTHANDLER_H_ */