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