#include "networkcreator.h" #include "ui_networkcreator.h" NetworkCreator::NetworkCreator(QWidget *parent) : QDialog(parent), ui(new Ui::NetworkCreator) { ui->setupUi(this); } NetworkCreator::~NetworkCreator() { delete ui; }