finished detector

This commit is contained in:
Jonas Zeunert
2018-04-27 00:50:54 +02:00
parent a181f12d20
commit 65bf3e5958
77 changed files with 10430 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/*
* InputFactory.h
*
* Created on: Apr 5, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
*/
#ifndef INPUTFACTORY_H_
#define INPUTFACTORY_H_
#include <vector>
#include "InputEvent.h"
namespace Input
{
class InputFactory
{
public:
InputFactory();
~InputFactory();
std::vector<InputEvent*> get_input_events();
private:
std::vector<InputEvent*> input_events;
};
}
#endif /* INPUTFACTORY_H_ */