mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-04 05:50:48 +08:00
Use std::array for the preset ini files.
This commit is contained in:
parent
af791ccd97
commit
104089a3e3
@ -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};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user