24 lines
326 B
C++
24 lines
326 B
C++
#ifndef _EXTROSPECTOR_H
|
|
#define _EXTROSPECTOR_H
|
|
|
|
#include <cstdint>
|
|
#include <sensors/sensor.h>
|
|
|
|
namespace smo {
|
|
namespace sensors {
|
|
|
|
class Extrospector
|
|
: public Sensor
|
|
{
|
|
public:
|
|
Extrospector(void) = default;
|
|
~Extrospector() = default;
|
|
|
|
public:
|
|
};
|
|
|
|
} // namespace sensors
|
|
} // namespace smo
|
|
|
|
#endif // _EXTROSPECTOR_H
|