15 lines
184 B
C++
15 lines
184 B
C++
#ifndef I_VALUE_SENSOR_H
|
|
#define I_VALUE_SENSOR_H
|
|
|
|
class IValueSensor {
|
|
|
|
public:
|
|
|
|
virtual ~IValueSensor() = default;
|
|
|
|
[[nodiscard]] virtual float getValue() const = 0;
|
|
|
|
};
|
|
|
|
#endif
|