finished detector
This commit is contained in:
33
FlippR-Driver/src/input/InputFactory.h
Normal file
33
FlippR-Driver/src/input/InputFactory.h
Normal 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_ */
|
||||
Reference in New Issue
Block a user