2020-08-14 10:48:15 +00:00
|
|
|
#ifndef INDOORTEMPERATURE_H
|
|
|
|
#define INDOORTEMPERATURE_H
|
|
|
|
|
2020-09-17 14:22:47 +00:00
|
|
|
#include <Box.h>
|
2020-08-14 10:48:15 +00:00
|
|
|
|
2020-09-17 14:22:47 +00:00
|
|
|
class IndoorTemperature : public Box
|
2020-08-14 10:48:15 +00:00
|
|
|
{
|
2020-09-17 14:22:47 +00:00
|
|
|
public:
|
|
|
|
IndoorTemperature( QQuickItem* parent );
|
2020-08-14 10:48:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INDOORTEMPERATURE_H
|