This commit is contained in:
Jonas Zeunert
2018-06-15 00:02:03 +02:00
parent ec41e9e314
commit d027d32e2f
19 changed files with 79 additions and 20 deletions

View File

@@ -0,0 +1,10 @@
/*
* BlockingQueue.cpp
*
* Created on: Jun 15, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
*/

View File

@@ -5,8 +5,8 @@
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
*/
#ifndef SRC_UTILITIES_BLOCKINGQUEUE_HPP_
#define SRC_UTILITIES_BLOCKINGQUEUE_HPP_
#ifndef SRC_UTILITIES_BLOCKINGQUEUE_H_
#define SRC_UTILITIES_BLOCKINGQUEUE_H_
#include <mutex>
#include <condition_variable>
@@ -42,4 +42,4 @@ public:
#endif /* SRC_UTILITIES_BLOCKINGQUEUE_HPP_ */
#endif /* SRC_UTILITIES_BLOCKINGQUEUE_H_ */

View File

@@ -0,0 +1,10 @@
/*
* GPIOInterface.cpp
*
* Created on: Jun 15, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
*/

View File

@@ -10,8 +10,8 @@
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
*/
#ifndef SRC_UTILITIES_GPIOINTERFACE_HPP_
#define SRC_UTILITIES_GPIOINTERFACE_HPP_
#ifndef SRC_UTILITIES_GPIOINTERFACE_H_
#define SRC_UTILITIES_GPIOINTERFACE_H_
#include <fstream>
#include "config.h"
@@ -39,4 +39,4 @@ public:
#endif /* SRC_UTILITIES_GPIOINTERFACE_HPP_ */
#endif /* SRC_UTILITIES_GPIOINTERFACE_H_ */

View File

@@ -8,7 +8,7 @@
#ifndef SRC_IEVENTHANDLER_H_
#define SRC_IEVENTHANDLER_H_
#include "../input/Event.hpp"
#include "../input/Event.h"
class IEventHandler
{

View File

@@ -8,9 +8,8 @@
#ifndef SRC_UTILITIES_INPUTGPIOINTERFACE_H_
#define SRC_UTILITIES_INPUTGPIOINTERFACE_H_
#include "GPIOInterface.hpp"
#include <exception>
#include "GPIOInterface.h"
class InputGPIOInterface : GPIOInterface
{

View File

@@ -8,7 +8,7 @@
#ifndef SRC_UTILITIES_OUTPUTGPIOINTERFACE_H_
#define SRC_UTILITIES_OUTPUTGPIOINTERFACE_H_
#include "GPIOInterface.hpp"
#include "GPIOInterface.h"
class OutputGPIOInterface : GPIOInterface
{