Files

22 lines
242 B
C++
Raw Permalink Normal View History

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 {
namespace sensors {
2025-01-04 13:48:29 -04:00
class Sensor
{
public:
Sensor() = default;
2025-01-04 13:48:29 -04:00
~Sensor() = default;
public:
};
} // namespace sensors
2025-07-22 06:48:04 -04:00
} // namespace smo
2025-01-04 13:48:29 -04:00
#endif // _SENSOR_H