#pragma once #include "Thing.h" /// @brief A sensor is a thing which can perform measurements in the environment class Sensor : public Thing { public: Sensor(); bool isDistanceSensor = false; };