summaryrefslogtreecommitdiff
path: root/test/chartarea/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/chartarea/main.cpp')
-rw-r--r--test/chartarea/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/chartarea/main.cpp b/test/chartarea/main.cpp
new file mode 100644
index 0000000..af9caac
--- /dev/null
+++ b/test/chartarea/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();
+}