##// END OF EJS Templates
the two bridges, Star Dundee and GRESB are fully functional
the two bridges, Star Dundee and GRESB are fully functional

File last commit:

r0:081a6eb3cced default
r10:74729fe49979 default
Show More
qipdialogbox.h
30 lines | 549 B | text/x-c | CLexer
#ifndef WIDGETADDRESS_H
#define WIDGETADDRESS_H
#include <QWidget>
#include <QSpinBox>
#include <QString>
#include <QLabel>
class QIPDialogBox : public QWidget
{
Q_OBJECT
public:
explicit QIPDialogBox(QWidget *parent = 0);
QString getGRESBIP();
signals:
public slots:
void valueChanged();
private:
QSpinBox *addressPart1;
QSpinBox *addressPart2;
QSpinBox *addressPart3;
QSpinBox *addressPart4;
//QLabel * labelGRESBIP;
QString gresbIP;
};
#endif // WIDGETADDRESS_H