Use std::array for the preset ini files.

This commit is contained in:
Joseph Lenox 2018-11-11 00:18:01 -06:00 committed by Joseph Lenox
parent af791ccd97
commit 104089a3e3

View File

@ -5,6 +5,7 @@
#include "Notifier.hpp"
#include <string>
#include <vector>
#include <array>
#include <stack>
#include <mutex>
@ -33,6 +34,7 @@ public:
void OnUnhandledException() override;
std::vector<Presets> presets { preset_types, Presets() };
std::array<wxString, preset_types> preset_ini { };
private:
std::unique_ptr<Notifier> notifier {nullptr};