32 lines
495 B
C++
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_ */
|