Create UI project, start designing UI.
This commit is contained in:
parent
bdc0ed8065
commit
b3fdb37b87
10 changed files with 224 additions and 0 deletions
14
ZeroTierUI/mainwindow.cpp
Normal file
14
ZeroTierUI/mainwindow.cpp
Normal file
|
@ -0,0 +1,14 @@
|
|||
#include "mainwindow.h"
|
||||
#include "ui_mainwindow.h"
|
||||
|
||||
MainWindow::MainWindow(QWidget *parent) :
|
||||
QMainWindow(parent),
|
||||
ui(new Ui::MainWindow)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
MainWindow::~MainWindow()
|
||||
{
|
||||
delete ui;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue