From 27c26952a5d1905f11ea4d8fe3d303fee82efd56 Mon Sep 17 00:00:00 2001 From: zheng_wenlong Date: Fri, 31 May 2019 12:44:40 +0900 Subject: change dbus to websocket --- app/file_operation.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'app/file_operation.h') diff --git a/app/file_operation.h b/app/file_operation.h index 65df54a..9fbbd6c 100644 --- a/app/file_operation.h +++ b/app/file_operation.h @@ -16,22 +16,20 @@ class File_Operation: public QObject{ Q_OBJECT QString m_mapAccessToken; - QString m_mapStyle; double m_car_speed; // set Km/h - int m_update_interval; // set millisecond double m_start_latitude; double m_start_longitute; + QString m_mapStyleUrls; public: File_Operation(); ~File_Operation(); Q_INVOKABLE QString getMapAccessToken(); - Q_INVOKABLE QString getMapStyle(); Q_INVOKABLE double getCarSpeed(); - Q_INVOKABLE int getUpdateInterval(); Q_INVOKABLE double getStartLatitude(); Q_INVOKABLE double getStartLongitute(); + Q_INVOKABLE QString getMapStyleUrls(); private: void initFileOperation(); -- cgit 1.2.3-korg