mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:50:05 +00:00
Adding settings for debug enabled and font sizes
This commit is contained in:
parent
a3bd6ba65c
commit
81f1beb8d8
6 changed files with 199 additions and 33 deletions
|
|
@ -20,16 +20,18 @@ public:
|
|||
explicit GeneralSettings();
|
||||
~GeneralSettings();
|
||||
|
||||
GeneralSettings(const GeneralSettings&) = delete;
|
||||
GeneralSettings(const GeneralSettings&) = delete;
|
||||
GeneralSettings& operator=(const GeneralSettings&) = delete;
|
||||
|
||||
GeneralSettings(GeneralSettings&&) noexcept;
|
||||
GeneralSettings& operator=(GeneralSettings&&) noexcept;
|
||||
|
||||
std::string default_radar_site() const;
|
||||
int64_t grid_height() const;
|
||||
int64_t grid_width() const;
|
||||
std::string mapbox_api_key() const;
|
||||
bool debug_enabled() const;
|
||||
std::string default_radar_site() const;
|
||||
std::vector<int64_t> font_sizes() const;
|
||||
int64_t grid_height() const;
|
||||
int64_t grid_width() const;
|
||||
std::string mapbox_api_key() const;
|
||||
|
||||
boost::json::value ToJson() const;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue