Organize the files
This commit is contained in:
12
app/include/sensor/TemperatureSensor.h
Normal file
12
app/include/sensor/TemperatureSensor.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#ifndef TEMPERATURESENSOR_H_
|
||||
#define TEMPERATURESENSOR_H_
|
||||
|
||||
#include <iostream>
|
||||
|
||||
class TemperatureSensor {
|
||||
public:
|
||||
virtual int temperature() = 0;
|
||||
virtual std::string name() = 0;
|
||||
};
|
||||
|
||||
#endif // TEMPERATURESENSOR_H_
|
||||
Reference in New Issue
Block a user