You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
321 B
23 lines
321 B
1 year ago
|
#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:
|
||
|
Ui::NetworkCreator *ui;
|
||
|
};
|
||
|
|
||
|
#endif // NETWORKCREATOR_H
|