22 lines
242 B
C++
22 lines
242 B
C++
#ifndef _SENSOR_H
|
|
#define _SENSOR_H
|
|
|
|
#include <cstdint>
|
|
|
|
namespace smo {
|
|
namespace sensors {
|
|
|
|
class Sensor
|
|
{
|
|
public:
|
|
Sensor() = default;
|
|
~Sensor() = default;
|
|
|
|
public:
|
|
};
|
|
|
|
} // namespace sensors
|
|
} // namespace smo
|
|
|
|
#endif // _SENSOR_H
|