24 lines
454 B
C++
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_ */
|