2025-01-04 13:48:29 -04:00
|
|
|
#ifndef _EXTROSPECTOR_H
|
|
|
|
|
#define _EXTROSPECTOR_H
|
|
|
|
|
|
|
|
|
|
#include <cstdint>
|
2025-01-04 14:34:54 -04:00
|
|
|
#include <sensors/sensor.h>
|
|
|
|
|
|
|
|
|
|
namespace hk {
|
|
|
|
|
namespace sensors {
|
2025-01-04 13:48:29 -04:00
|
|
|
|
|
|
|
|
class Extrospector
|
2025-01-04 14:34:54 -04:00
|
|
|
: public Sensor
|
2025-01-04 13:48:29 -04:00
|
|
|
{
|
|
|
|
|
public:
|
2025-01-04 14:34:54 -04:00
|
|
|
Extrospector(void) = default;
|
2025-01-04 13:48:29 -04:00
|
|
|
~Extrospector() = default;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
};
|
|
|
|
|
|
2025-01-04 14:34:54 -04:00
|
|
|
} // namespace sensors
|
|
|
|
|
} // namespace hk
|
|
|
|
|
|
2025-01-04 13:48:29 -04:00
|
|
|
#endif // _EXTROSPECTOR_H
|