#ifndef I_VALUE_SENSOR_H #define I_VALUE_SENSOR_H class IValueSensor { public: virtual ~IValueSensor() = default; [[nodiscard]] virtual float getValue() const = 0; }; #endif