Files
fantasize/app/include/TemperatureSensor.h
2022-09-11 19:30:13 +02:00

13 lines
216 B
C++

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