summaryrefslogtreecommitdiff
path: root/include/llmr/map/settings.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-01-16 13:53:10 +0100
committerKonstantin Käfer <mail@kkaefer.com>2014-01-16 13:53:10 +0100
commitc01719bc04c759d66be32d534d03057366c7f1b1 (patch)
treed361458f6e1a8b4eda86a509f244dd52f243119b /include/llmr/map/settings.hpp
parent8fd762b5f3c437beee60c7124e30f6994a6fcb3a (diff)
downloadqtlocation-mapboxgl-c01719bc04c759d66be32d534d03057366c7f1b1.tar.gz
make bundle on mac os x and persist settings
Diffstat (limited to 'include/llmr/map/settings.hpp')
-rw-r--r--include/llmr/map/settings.hpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/llmr/map/settings.hpp b/include/llmr/map/settings.hpp
new file mode 100644
index 0000000000..d7ebb55ede
--- /dev/null
+++ b/include/llmr/map/settings.hpp
@@ -0,0 +1,23 @@
+#ifndef LLMR_MAP_SETTINGS
+#define LLMR_MAP_SETTINGS
+
+namespace llmr {
+
+class settings {
+public:
+ virtual void save() = 0;
+
+public:
+ // position
+ double longitude = 0;
+ double latitude = 0;
+ double scale = 0;
+ double angle = 0;
+
+ // debug
+ bool debug = false;
+};
+
+}
+
+#endif