aboutsummaryrefslogtreecommitdiffstats
path: root/example/main.cpp
diff options
context:
space:
mode:
authorElOraiby <wael.eloraiby@gmail.com>2015-05-31 20:53:45 -0400
committerElOraiby <wael.eloraiby@gmail.com>2015-05-31 20:53:45 -0400
commit2e38deaac5fbde751bfd09ec2c098a15a6019892 (patch)
treea52cd56ea4c3f2ac18dd726cf8818087fa265779 /example/main.cpp
parent64b2267a76c6a509b5a5b052907c047d4a5ceadc (diff)
move the example to the example folder
Diffstat (limited to 'example/main.cpp')
-rw-r--r--example/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/example/main.cpp b/example/main.cpp
new file mode 100644
index 0000000..24a397b
--- /dev/null
+++ b/example/main.cpp
@@ -0,0 +1,11 @@
+#include <QApplication>
+#include "mainwindow.h"
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ MainWindow w;
+ w.show();
+
+ return a.exec();
+}