ifdef for maemo
[googlelatitude] / src / main.cpp
1 #include "latitude.h"
2
3 int main(int argc, char *argv[]) {
4     QApplication app(argc, argv);
5     QCoreApplication::setOrganizationName("linfati");
6     QCoreApplication::setOrganizationDomain("linfati.com");
7     QCoreApplication::setApplicationName("GoogleLatitude");
8
9     LatitudeGUI *gui = new LatitudeGUI();
10     gui->show();
11
12     return app.exec();
13 }
14
15 /*
16  TODO:
17  on auth error -> stop gps
18  on new pos, only set it
19  send new pos every 120s, only if is diferent
20  */