added tests

This commit is contained in:
Neeflix
2018-06-28 00:25:26 +02:00
parent 66dd3f2b42
commit 252dbeca47
61 changed files with 4867 additions and 14 deletions

View File

@@ -9,9 +9,10 @@
#define SRC_UTILITIES_INPUTGPIOINTERFACE_H_
#include <exception>
#include "IInputGPIOInterface.h"
#include "GPIOInterface.h"
class InputGPIOInterface : GPIOInterface
class InputGPIOInterface : public IInputGPIOInterface, GPIOInterface
{
public:
InputGPIOInterface(std::string matrix_config_path);
@@ -31,6 +32,4 @@ private:
char input_data_address;
};
#endif /* SRC_UTILITIES_INPUTGPIOINTERFACE_H_ */