2025-01-04 13:48:29 -04:00
|
|
|
#ifndef _SENSOR_H
|
|
|
|
|
#define _SENSOR_H
|
|
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
2025-07-22 06:48:04 -04:00
|
|
|
namespace smo {
|
2025-01-04 14:34:54 -04:00
|
|
|
namespace sensors {
|
|
|
|
|
|
2025-01-04 13:48:29 -04:00
|
|
|
class Sensor
|
|
|
|
|
{
|
|
|
|
|
public:
|
2025-01-04 14:34:54 -04:00
|
|
|
Sensor() = default;
|
2025-01-04 13:48:29 -04:00
|
|
|
~Sensor() = default;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
};
|
|
|
|
|
|
2025-01-04 14:34:54 -04:00
|
|
|
} // namespace sensors
|
2025-07-22 06:48:04 -04:00
|
|
|
} // namespace smo
|
2025-01-04 14:34:54 -04:00
|
|
|
|
2025-01-04 13:48:29 -04:00
|
|
|
#endif // _SENSOR_H
|