This commit is contained in:
Jonas Zeunert
2018-11-20 23:23:31 +01:00
2 changed files with 15 additions and 0 deletions

View File

@@ -6,6 +6,10 @@
*/
#include "DisplayGPIOInterface.h"
namespace flippR_driver
{
namespace utility
{
DisplayGPIOInterface::DisplayGPIOInterface()
{
@@ -18,3 +22,6 @@ DisplayGPIOInterface::~DisplayGPIOInterface()
// TODO Auto-generated destructor stub
}
}
}

View File

@@ -8,6 +8,11 @@
#ifndef SRC_UTILITY_DISPLAYGPIOINTERFACE_H_
#define SRC_UTILITY_DISPLAYGPIOINTERFACE_H_
namespace flippR_driver
{
namespace utility
{
class DisplayGPIOInterface
{
public:
@@ -16,4 +21,7 @@ public:
~DisplayGPIOInterface();
};
}
}
#endif /* SRC_UTILITY_DISPLAYGPIOINTERFACE_H_ */