summaryrefslogtreecommitdiff
path: root/include/llmr/map/settings.hpp
blob: 8f2e12810a587e5732d8bcf4cbef576d5bf49cff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef LLMR_MAP_SETTINGS
#define LLMR_MAP_SETTINGS

namespace llmr {

class Settings {
public:
    virtual void save() = 0;

    // Make noncopyable
    Settings() = default;
    Settings(const Settings&) = delete;
    Settings(const Settings&&) = delete;
    Settings &operator=(const Settings&) = delete;
    Settings &operator=(const Settings&&) = delete;

public:
    // position
    double longitude = 0;
    double latitude = 0;
    double scale = 0;
    double angle = 0;

    // debug
    bool debug = false;
};

}

#endif