refactoring to interfaces
This commit is contained in:
30
FlippR-Driver/src/input/IDetector.h
Normal file
30
FlippR-Driver/src/input/IDetector.h
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* IDetector.h
|
||||
*
|
||||
* Created on: Jun 13, 2018
|
||||
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
|
||||
*/
|
||||
|
||||
#ifndef SRC_INPUT_IDETECTOR_H_
|
||||
#define SRC_INPUT_IDETECTOR_H_
|
||||
|
||||
#include <thread>
|
||||
#include <map>
|
||||
|
||||
#include "../utilities/InputGPIOInterface.h"
|
||||
#include "Event.hpp"
|
||||
#include "EventNotifier.h"
|
||||
|
||||
namespace Input
|
||||
{
|
||||
|
||||
class IDetector
|
||||
{
|
||||
|
||||
public:
|
||||
virtual ~IDetector() = 0;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif /* SRC_INPUT_IDETECTOR_H_ */
|
||||
Reference in New Issue
Block a user