20 lines
350 B
C++
20 lines
350 B
C++
/*
|
|
* 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_ */
|