#ifndef TEMPERATURESENSOR_H_ #define TEMPERATURESENSOR_H_ #include class TemperatureSensor { public: virtual int getTemperature() = 0; virtual std::string toJson() = 0; }; #endif // TEMPERATURESENSOR_H_