summaryrefslogtreecommitdiffstats
path: root/app/file_operation.h
diff options
context:
space:
mode:
authorzheng_wenlong <wenlong_zheng@nexty-ele.com>2019-05-31 12:44:40 +0900
committerzheng_wenlong <wenlong_zheng@nexty-ele.com>2019-05-31 12:44:40 +0900
commit27c26952a5d1905f11ea4d8fe3d303fee82efd56 (patch)
tree730dedc9a0f8ddedb1bbb2c3644c0c48a00039d6 /app/file_operation.h
parentccfef630efc19a235d4451582fb98a3cae35558c (diff)
change dbus to websocket
Diffstat (limited to 'app/file_operation.h')
-rw-r--r--app/file_operation.h6
1 files changed, 2 insertions, 4 deletions
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();