summaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
new file mode 100644
index 0000000..9ef8785
--- /dev/null
+++ b/main.cpp
@@ -0,0 +1,13 @@
+#include <QCoreApplication>
+#include "Tracker.h"
+
+int main(int argc, char *argv[])
+{
+ QCoreApplication a(argc, argv);
+ a.setApplicationName("Location Tracker");
+ a.setOrganizationName("ZX2C4 Software");
+ a.setOrganizationDomain("zx2c4.com");
+ a.setApplicationVersion("0.1");
+ Tracker tracker("zx2c4.com", "/projects/locationtracker", "n950", "tester1234", "/home/user/MyDocs/zx2c4.der");
+ return a.exec();
+}