Create UI project, start designing UI.

This commit is contained in:
Adam Ierymenko 2013-11-13 16:50:49 -05:00
parent bdc0ed8065
commit b3fdb37b87
10 changed files with 224 additions and 0 deletions

11
ZeroTierUI/main.cpp Normal file
View file

@ -0,0 +1,11 @@
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}