Add default preset store (by string name) to Settings class. No save/load functionality.

This commit is contained in:
Joseph Lenox 2018-11-18 00:26:33 -06:00 committed by Joseph Lenox
parent 54d40bbc04
commit 18fd2b7dc2

View File

@ -51,7 +51,9 @@ class Settings {
void save_settings();
void load_settings();
std::array<std::vector<wxString>, preset_types> default_presets {};
/// Storage for window positions
std::map<wxString, std::tuple<wxPoint, wxSize, bool> > window_pos { std::map<wxString, std::tuple<wxPoint, wxSize, bool> >() };