summaryrefslogtreecommitdiff
path: root/common/settings_json.hpp
blob: 09f7841c9143a43874f1eb7b1b91513b947ab815 (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
#ifndef MBGL_JSON_SETTINGS
#define MBGL_JSON_SETTINGS

namespace mbgl {

class Settings_JSON {
public:
    Settings_JSON();
    void load();
    void save();
    void clear();

public:
    double longitude = 0;
    double latitude = 0;
    double zoom = 0;
    double angle = 0;

    bool debug = false;
};

}

#endif