Files
flippr-code/FlippR-Driver/src/input/InputDriver.hpp
2018-05-31 19:56:29 +02:00

32 lines
495 B
C++

/*
* InputDriver.hpp
*
* Created on: May 31, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
*/
#ifndef SRC_INPUT_INPUTDRIVER_HPP_
#define SRC_INPUT_INPUTDRIVER_HPP_
#include "EventHandler.hpp"
namespace Input
{
class InputDriver
{
InputDriver()
{
}
void register_event_handler(EventHandler* handler)
{
;
}
void unregister_event_handler(EventHandler* handler);
};
}
#endif /* SRC_INPUT_INPUTDRIVER_HPP_ */