summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/QtUI/main.cpp')
-rw-r--r--Swift/QtUI/main.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/Swift/QtUI/main.cpp b/Swift/QtUI/main.cpp
new file mode 100644
index 0000000..7a438fd
--- /dev/null
+++ b/Swift/QtUI/main.cpp
@@ -0,0 +1,10 @@
+#include <QApplication>
+
+#include "QtSwift.h"
+
+int main(int argc, char* argv[])
+{
+ QApplication app(argc, argv);
+ Swift::QtSwift swift;
+ return app.exec();
+}