working on big refactor

This commit is contained in:
Jonas Zeunert
2018-12-14 01:09:54 +01:00
parent f3100004b9
commit 2aee0f4f9d
67 changed files with 914 additions and 619 deletions

View 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_ */