23 lines
414 B
C++
23 lines
414 B
C++
#ifndef SPRINKLERDEVICEGUIITEM_H
|
|
#define SPRINKLERDEVICEGUIITEM_H
|
|
|
|
#include <QWidget>
|
|
#include "ui_SprinklerDeviceGuiItem.h"
|
|
|
|
namespace Ui {
|
|
class CSprinklerDeviceGuiItem;
|
|
}
|
|
|
|
class CSprinklerDeviceGuiItem : public QWidget, public Ui::CSprinklerDeviceGuiItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CSprinklerDeviceGuiItem(QWidget *parent = 0);
|
|
~CSprinklerDeviceGuiItem();
|
|
|
|
|
|
};
|
|
|
|
#endif // SPRINKLERDEVICEGUIITEM_H
|