Files
fantasize/app/include/TemperatureSensor.h

13 lines
225 B
C++

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