diff options
author | 2019-05-30 10:01:18 +0800 | |
---|---|---|
committer | 2019-05-30 10:01:18 +0800 | |
commit | c8d0de473418fb0312876e22a18f0fbda54c4b38 (patch) | |
tree | 1e969c50798ef7d2c87978f869ddae708138ed3f /app/file_operation.h | |
parent | ae47635e56c4af4d816a76e5186e945768543679 (diff) |
update als2019 navigationsandbox/wangzhiqiang/als2019
Diffstat (limited to 'app/file_operation.h')
-rw-r--r-- | app/file_operation.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app/file_operation.h b/app/file_operation.h new file mode 100644 index 0000000..411cc25 --- /dev/null +++ b/app/file_operation.h @@ -0,0 +1,42 @@ +#ifndef FILE_OPERATION_H +#define FILE_OPERATION_H +#include <QObject> +#include <QString> +#include <QFile> +#include <QJsonObject> +#include <QJsonDocument> + +/****************************************************** + * Please set mapAccessToken, mapStyleUrl, speed, + * interval, latitude and longitude in JSON format + * in /etc/naviconfig.ini + ******************************************************/ +#define NAVI_CONFIG_FILEPATH "/etc/naviconfig.ini" + +class File_Operation: public QObject{ + + Q_OBJECT + + QString m_mapAccessToken; + 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 double getCarSpeed(); + Q_INVOKABLE int getUpdateInterval(); + Q_INVOKABLE double getStartLatitude(); + Q_INVOKABLE double getStartLongitute(); + Q_INVOKABLE QString getMapStyleUrls(); + +private: + void initFileOperation(); +}; + +#endif // FILE_OPERATION_H |