22 lines
402 B
C++
22 lines
402 B
C++
/*
|
|
* IEventHandler.h
|
|
*
|
|
* Created on: Jun 13, 2018
|
|
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
|
|
*/
|
|
|
|
#ifndef SRC_IEVENTHANDLER_H_
|
|
#define SRC_IEVENTHANDLER_H_
|
|
|
|
#include "Event.h"
|
|
|
|
class IEventHandler
|
|
{
|
|
public:
|
|
virtual ~IEventHandler(){};
|
|
|
|
virtual void handle(flippR_driver::input::Event& event) = 0;
|
|
};
|
|
|
|
#endif /* SRC_IEVENTHANDLER_H_ */
|