2020-08-14 14:28:47 +00:00
|
|
|
#ifndef HUMIDITY_H
|
|
|
|
#define HUMIDITY_H
|
|
|
|
|
2020-09-17 14:33:25 +00:00
|
|
|
#include "Box.h"
|
2020-08-14 14:28:47 +00:00
|
|
|
|
2020-09-17 14:33:25 +00:00
|
|
|
class Humidity : public Box
|
2020-08-14 14:28:47 +00:00
|
|
|
{
|
2020-09-17 14:33:25 +00:00
|
|
|
public:
|
|
|
|
Humidity( QQuickItem* parent );
|
2020-08-14 14:28:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // HUMIDITY_H
|