25 lines
353 B
C
25 lines
353 B
C
|
//
|
||
|
// Created by scoliono on 10/14/23.
|
||
|
//
|
||
|
|
||
|
#ifndef FEMMAPS_SIGALERTROADSENSOR_H
|
||
|
#define FEMMAPS_SIGALERTROADSENSOR_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
|
||
|
class SigalertRoadSensor {
|
||
|
|
||
|
public:
|
||
|
SigalertRoadSensor(const std::string& name, const int pos[]);
|
||
|
|
||
|
private:
|
||
|
std::string m_name;
|
||
|
int m_pos[2];
|
||
|
int m_speed;
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //FEMMAPS_SIGALERTROADSENSOR_H
|