Moved files to make zouba the only project.
[ptas] / zouba / src / route.h
diff --git a/zouba/src/route.h b/zouba/src/route.h
deleted file mode 100644 (file)
index 9a311b5..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-#ifndef ROUTE_H
-#define ROUTE_H
-
-#include "routedata.h"
-#include "location.h"
-
-#include <QObject>
-#include <QNetworkReply>
-#include <QNetworkAccessManager>
-
-class RoutePrivate;
-
-class Route: public QObject
-{
-  Q_OBJECT
-
-public:
-  Route();
-  ~Route();
-
-  /*!
-    * \brief Gets the route data from the server
-    */
-  void getRoute();
-
-  /*!
-    \brief Get the from location
-    \return The from location
-    */
-  Location *fromLocation() const;
-
-  /*!
-    \brief Get the to location
-    \return The to location
-    */
-  Location *toLocation() const;
-
-public Q_SLOTS:
-
-  /*!
-    * \brief Sets the from location
-    * \param fromLocation The from location
-    */
-  void setFromLocation( Location *location=0 );
-
-  /*!
-    * \brief Sets the to location
-    * \param toLocation The to location
-    */
-  void setToLocation( Location *location=0 );
-
-Q_SIGNALS:
-  void routeReady( QList<RouteData> );
-  void busy( bool busy );
-
-private Q_SLOTS:
-  void replyFinished( QNetworkReply* );
-
-private:
-  RoutePrivate *q;
-  QNetworkAccessManager *manager;
-};
-#endif // ROUTE_H