// // Created by Johnathon Slightham on 2025-10-16. // #ifndef ISENSOR_H #define ISENSOR_H #include #include "SensorMessageBuilder.h" class ISensor { public: virtual ~ISensor() {} virtual std::vector get_sensor_data() = 0; }; #endif //ISENSOR_H