13 lines
174 B
C
13 lines
174 B
C
|
#ifndef HUMIDITY_H
|
||
|
#define HUMIDITY_H
|
||
|
|
||
|
#include <QskLinearBox.h>
|
||
|
|
||
|
class Humidity : public QskLinearBox
|
||
|
{
|
||
|
public:
|
||
|
Humidity( QQuickItem* parent );
|
||
|
};
|
||
|
|
||
|
#endif // HUMIDITY_H
|