23 lines
432 B
C++
23 lines
432 B
C++
/*
|
|
* InputGPIOInterface.h
|
|
*
|
|
* Created on: May 31, 2018
|
|
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
|
|
*/
|
|
|
|
#ifndef SRC_UTILITIES_IINPUTGPIOINTERFACE_H_
|
|
#define SRC_UTILITIES_IINPUTGPIOINTERFACE_H_
|
|
|
|
|
|
class IInputGPIOInterface
|
|
{
|
|
public:
|
|
virtual ~IInputGPIOInterface(){};
|
|
|
|
virtual bool read_input_data(char pin) = 0;
|
|
};
|
|
|
|
|
|
|
|
#endif /* SRC_UTILITIES_INPUTGPIOINTERFACE_H_ */
|