Files
salmanoff/smocore/include/sensors/sensor.h
T

22 lines
240 B
C++
Raw Normal View History

2025-01-04 13:48:29 -04:00
#ifndef _SENSOR_H
#define _SENSOR_H
#include <cstdint>
namespace hk {
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
} // namespace hk
2025-01-04 13:48:29 -04:00
#endif // _SENSOR_H