working on big refactor
This commit is contained in:
28
FlippR-Driver/include/input/EventHandler.h
Normal file
28
FlippR-Driver/include/input/EventHandler.h
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* EventHandler.h
|
||||
*
|
||||
* Created on: Jun 13, 2018
|
||||
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
|
||||
*/
|
||||
|
||||
#ifndef SRC_IEVENTHANDLER_H_
|
||||
#define SRC_IEVENTHANDLER_H_
|
||||
|
||||
#include "input/Event.h"
|
||||
|
||||
namespace flippR_driver
|
||||
{
|
||||
namespace input
|
||||
{
|
||||
|
||||
class EventHandler
|
||||
{
|
||||
public:
|
||||
virtual ~EventHandler() = default;
|
||||
|
||||
virtual void handle(flippR_driver::input::Event &event) = 0;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
#endif /* SRC_IEVENTHANDLER_H_ */
|
||||
Reference in New Issue
Block a user