diff options
| author | 2011-07-13 06:38:41 -0400 | |
|---|---|---|
| committer | 2011-07-13 06:38:41 -0400 | |
| commit | f7cfd9603c386434e0a113c5ac1b3bd0594de293 (patch) | |
| tree | b5e9637dc96a7aafbfa24474022bb562ca19bddf /main.cpp | |
| download | LocationTracker-f7cfd9603c386434e0a113c5ac1b3bd0594de293.tar.xz LocationTracker-f7cfd9603c386434e0a113c5ac1b3bd0594de293.zip | |
The initial commit. Still unworking, but it's a sketch of what it should
do.
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 13 |
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(); +} |
