You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #ifndef ADDFELLOWDIALOG_H
- #define ADDFELLOWDIALOG_H
-
- #include <QDialog>
-
- namespace Ui {
- class AddFellowDialog;
- }
-
- class AddFellowDialog : public QDialog
- {
- Q_OBJECT
-
- public:
- explicit AddFellowDialog(QWidget *parent = 0);
- ~AddFellowDialog();
-
- public:
- QString getIp();
- private slots:
- void onOkClicked();
- private:
- bool isValidIp(const QString& ip);
-
- private:
- Ui::AddFellowDialog *ui;
- };
-
- #endif // ADDFELLOWDIALOG_H
|