Separate in library the application
[googlelatitude] / latitudedaemon.cpp
diff --git a/latitudedaemon.cpp b/latitudedaemon.cpp
deleted file mode 100644 (file)
index 35a31e6..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "latitudedaemon.h"
-
-LatitudeDaemon::LatitudeDaemon(QObject *parent) :
-    QObject(parent),
-    latitude(this),
-    gps(this) {
-    qDebug() << "* LatitudeDaemon::LatitudeDaemon";
-
-    connect(&latitude, SIGNAL(gotToken()), this, SLOT(gl_GotToken()) );
-    connect(&latitude, SIGNAL(notToken()), this, SLOT(gl_NotToken()) );
-    connect(&latitude, SIGNAL(needAuth()), this, SLOT(gl_needAuth()) );
-
-    connect(&gps, SIGNAL(gotUpdate()), this, SLOT(get_gps()) );
-    connect(&gps, SIGNAL(gotFix()), this, SLOT(set_latitude()) );
-
-    latitude.getAccess();
-}