finished detector
This commit is contained in:
26
FlippR-Driver/src/input/InputEventHandler.h
Normal file
26
FlippR-Driver/src/input/InputEventHandler.h
Normal 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_ */
|
||||
Reference in New Issue
Block a user