mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-07-15 01:23:14 -07:00
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/network.cpp
Normal file
14
ZeroTierUI/network.cpp
Normal file
|
@ -0,0 +1,14 @@
|
|||
#include "network.h"
|
||||
#include "ui_network.h"
|
||||
|
||||
Network::Network(QWidget *parent) :
|
||||
QScrollArea(parent),
|
||||
ui(new Ui::Network)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
Network::~Network()
|
||||
{
|
||||
delete ui;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue