seperated public include headers

This commit is contained in:
Jonas Zeunert
2018-08-07 19:46:24 +02:00
parent a5dfe37514
commit 31d9a2b444
21 changed files with 374 additions and 6 deletions

View File

@@ -0,0 +1,25 @@
/*
* IInputDriver.h
*
* Created on: Jun 14, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
*/
#ifndef SRC_INPUT_IINPUTDRIVER_H_
#define SRC_INPUT_IINPUTDRIVER_H_
#include "utilities/IEventHandler.h"
#include "input/IEventNotifier.h"
namespace Input {
class IInputDriver
{
public:
virtual ~IInputDriver(){};
virtual void register_event_handler(IEventHandler* handler) = 0;
virtual void unregister_event_handler(IEventHandler* handler) = 0;
};
}
#endif /* SRC_INPUT_IINPUTDRIVER_H_ */

View File

@@ -0,0 +1,19 @@
/*
* IInputDriverFactory.h
*
* Created on: Jun 13, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
*/
#ifndef SRC_INPUT_IINPUTDRIVERFACTORY_H_
#define SRC_INPUT_IINPUTDRIVERFACTORY_H_
namespace Input {
class IInputDriverFactory
{
};
}
#endif /* SRC_INPUT_IINPUTDRIVERFACTORY_H_ */