summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authordaniel-Jones <daniel@danieljon.es>2016-07-21 19:10:18 +0930
committerdaniel-Jones <daniel@danieljon.es>2016-07-21 19:10:18 +0930
commitb9224cb9de71995b9f89787d47b98f9bbb188d58 (patch)
tree8d45602c26d6ffc959da8df57d05dbf00bd1e9d5 /main.cpp
downloadcsgo_stats-b9224cb9de71995b9f89787d47b98f9bbb188d58.tar.gz
csgo_stats-b9224cb9de71995b9f89787d47b98f9bbb188d58.zip
first commit, basic program currently
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
new file mode 100644
index 0000000..dffe85e
--- /dev/null
+++ b/main.cpp
@@ -0,0 +1,11 @@
+#include "user_select_dialog.h"
+#include <QApplication>
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ user_select_dialog w;
+ w.show();
+
+ return a.exec();
+}