summaryrefslogtreecommitdiff
path: root/examples/qt_with_qmake/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qt_with_qmake/main.cpp')
-rw-r--r--examples/qt_with_qmake/main.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/qt_with_qmake/main.cpp b/examples/qt_with_qmake/main.cpp
new file mode 100644
index 0000000..c7dd782
--- /dev/null
+++ b/examples/qt_with_qmake/main.cpp
@@ -0,0 +1,13 @@
+#include <QCoreApplication>
+#include <QTimer>
+
+#include "exampleclass.h"
+
+int main(int argc, char *argv[])
+{
+ QCoreApplication a(argc, argv);
+
+ ExampleClass ex;
+
+ return a.exec();
+}