summaryrefslogtreecommitdiff
path: root/ZeroTierUI/main.cpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-11-13 16:50:49 -0500
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-11-13 16:50:49 -0500
commitb3fdb37b87ee42f385b9bbe6df7657a5b5e1cbf8 (patch)
tree24cad5b4523eb1e8953060da6dd79fc53f9e4dc2 /ZeroTierUI/main.cpp
parentbdc0ed8065d8b9a4311cab687365177f52c8b5fd (diff)
downloadinfinitytier-b3fdb37b87ee42f385b9bbe6df7657a5b5e1cbf8.tar.gz
infinitytier-b3fdb37b87ee42f385b9bbe6df7657a5b5e1cbf8.zip
Create UI project, start designing UI.
Diffstat (limited to 'ZeroTierUI/main.cpp')
-rw-r--r--ZeroTierUI/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/ZeroTierUI/main.cpp b/ZeroTierUI/main.cpp
new file mode 100644
index 00000000..a080bdd2
--- /dev/null
+++ b/ZeroTierUI/main.cpp
@@ -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();
+}