Files
flippr-code/FlippR-Driver/src/input/InputDriver.hpp
2018-05-31 17:42:43 +02:00

24 lines
454 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.h"
namespace Input
{
class InputDriver
{
void register_event_handler(EventHandler* handler);
void unregister_event_handler(EventHandler* handler);
};
}
#endif /* SRC_INPUT_INPUTDRIVER_HPP_ */