17 lines
244 B
C++
17 lines
244 B
C++
#ifndef SPRINKLERDEVICE_H
|
|
#define SPRINKLERDEVICE_H
|
|
|
|
#include <QObject>
|
|
|
|
class CSprinklerDevice : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CSprinklerDevice(QObject *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // SPRINKLERDEVICE_H
|