29 lines
460 B
C++
29 lines
460 B
C++
#ifndef NETWORKCREATOR_H
|
|
#define NETWORKCREATOR_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class NetworkCreator;
|
|
}
|
|
|
|
class NetworkCreator : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit NetworkCreator(QWidget *parent = nullptr);
|
|
~NetworkCreator();
|
|
|
|
private slots:
|
|
void onOkButtonClicked();
|
|
void onCancelButtonClicked();
|
|
void createReplyFinished();
|
|
|
|
private:
|
|
Ui::NetworkCreator *ui;
|
|
QDialog *dialogWindow;
|
|
};
|
|
|
|
#endif // NETWORKCREATOR_H
|