LatitudeUpdater 0.1, based in qtm-location and qml
[googlelatitude] / src / main-daemon.cpp
diff --git a/src/main-daemon.cpp b/src/main-daemon.cpp
deleted file mode 100644 (file)
index 6007c60..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "daemon.h"
-
-int main(int argc, char *argv[]) {
-    QCoreApplication::setOrganizationName("linfati");
-    QCoreApplication::setOrganizationDomain("linfati.com");
-    QCoreApplication::setApplicationName("GoogleLatitude");
-
-    QCoreApplication app(argc, argv);
-
-    if ( app.arguments().contains(QString("--init")) ) {
-        QSettings set;
-        if ( ! set.value("daemon",false).toBool() ) {
-            qDebug() << "No Daemon mode enable";
-            return 0;
-        }
-    }
-
-    Daemon demonio;
-    Q_UNUSED(demonio);
-
-    return app.exec();
-}