|
|
@ -51,11 +51,6 @@ namespace CSMPrefs
|
|
|
|
Iterator mCurrentCategory;
|
|
|
|
Iterator mCurrentCategory;
|
|
|
|
QMutex mMutex;
|
|
|
|
QMutex mMutex;
|
|
|
|
|
|
|
|
|
|
|
|
// not implemented
|
|
|
|
|
|
|
|
State(const State&);
|
|
|
|
|
|
|
|
State& operator=(const State&);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void declare();
|
|
|
|
void declare();
|
|
|
|
|
|
|
|
|
|
|
|
void declareCategory(const std::string& key);
|
|
|
|
void declareCategory(const std::string& key);
|
|
|
@ -82,8 +77,12 @@ namespace CSMPrefs
|
|
|
|
public:
|
|
|
|
public:
|
|
|
|
State(const Files::ConfigurationManager& configurationManager);
|
|
|
|
State(const Files::ConfigurationManager& configurationManager);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
State(const State&) = delete;
|
|
|
|
|
|
|
|
|
|
|
|
~State();
|
|
|
|
~State();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
State& operator=(const State&) = delete;
|
|
|
|
|
|
|
|
|
|
|
|
void save();
|
|
|
|
void save();
|
|
|
|
|
|
|
|
|
|
|
|
Iterator begin();
|
|
|
|
Iterator begin();
|
|
|
|