aboutsummaryrefslogtreecommitdiffstats
path: root/app/dbus_server_navigationcore.h
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2019-10-17 06:34:09 -0700
committerMatt Ranostay <matt.ranostay@konsulko.com>2019-11-11 01:05:08 -0800
commitca2db695f1258e0b325c7454a8f79c6d7b2eb48b (patch)
tree57a1779ae7e8c4ae6e6946f76e81a81512f7d4e2 /app/dbus_server_navigationcore.h
parent7d7a2abc459456aa261f53d1f07ff54a2e6a810a (diff)
ondemandnavi: remove DBus interface
For proper afb interfae to function the DBus support needs to be removed. Bug-AGL: SPEC-2880 Change-Id: Ib501583e5cb3821bf5479d875e447411477c7da3 Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'app/dbus_server_navigationcore.h')
-rw-r--r--app/dbus_server_navigationcore.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/app/dbus_server_navigationcore.h b/app/dbus_server_navigationcore.h
deleted file mode 100644
index 3f62dbb..0000000
--- a/app/dbus_server_navigationcore.h
+++ /dev/null
@@ -1,48 +0,0 @@
-#ifndef DBUS_SERVER_NAVIGATIONCORE_H
-#define DBUS_SERVER_NAVIGATIONCORE_H
-
-#include <QtDBus/QDBusConnection>
-#include <QtCore/QObject>
-#include <QtDBus/QtDBus>
-
-#include "org.genivi.navigationcore_adaptor.h"
-#include "org.genivi.navigationcore_interface.h"
-
-class dbus_server_navigationcore : public QObject
-{
- Q_OBJECT
-
- QString m_pathName;
- QString m_objName;
- QString m_serverName;
- QObject *m_object;
-
-public:
- dbus_server_navigationcore(QObject *parent = 0);
- ~dbus_server_navigationcore();
-
-public slots:
- // mapmatchedposition
- qPosition GetPosition(const qValuesToReturn &valuesToReturn);
- void PauseSimulation(uint sessionHandle);
- void SetSimulationMode(uint sessionHandle, bool activate);
- // routing
- void CalculateRoute(uint sessionHandle, uint routeHandle);
- void CancelRouteCalculation(uint sessionHandle, uint routeHandle);
- uint CreateRoute(uint sessionHandle);
- qRoutesList GetAllRoutes();
- void SetWaypoints(uint sessionHandle, uint routeHandle, bool startFromCurrentPosition, qWaypointsList waypointsList);
- // session
- qSessionsList GetAllSessions();
-
-signals:
- void doPauseSimulation();
-
-private:
- void setupDBus();
- void setupApi();
-
-};
-
-#endif // DBUS_SERVER_NAVIGATIONCORE_H
-