13 lines
216 B
C++
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_
|