27 lines
301 B
C++
27 lines
301 B
C++
/*
|
|
* Detector.h
|
|
*
|
|
* Created on: Jun 13, 2018
|
|
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
|
|
*/
|
|
|
|
#ifndef SRC_INPUT_DETECTOR_H_
|
|
#define SRC_INPUT_DETECTOR_H_
|
|
|
|
|
|
namespace flippR_driver
|
|
{
|
|
namespace input
|
|
{
|
|
|
|
class Detector
|
|
{
|
|
|
|
public:
|
|
virtual ~Detector() = default;
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
#endif |