31 lines
465 B
C++
31 lines
465 B
C++
/*
|
|
* 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_ */
|