diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-09-09 08:51:25 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-09-09 15:00:58 +0200 |
commit | 6bc3fe31a3f354afc7be870a4a2d375ab6c746b6 (patch) | |
tree | 39b439b16cb872b3d982a6083a546456001d0f8e /options/group.hpp | |
parent | cc6fc6577940df89c57db08743b181291c2a4b43 (diff) |
add support for migrations
They're run from the UI thread so can even be interactive.
Diffstat (limited to 'options/group.hpp')
-rw-r--r-- | options/group.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/options/group.hpp b/options/group.hpp index f76978ad..f5b3e523 100644 --- a/options/group.hpp +++ b/options/group.hpp @@ -17,6 +17,7 @@ class OPENTRACK_OPTIONS_EXPORT group final QString name; public: std::map<QString, QVariant> kvs; + group(const QString& name, mem<QSettings> s); group(const QString& name); void save() const; void save_deferred(QSettings& s) const; @@ -25,8 +26,8 @@ public: static QString ini_directory(); static QString ini_filename(); static QString ini_pathname(); - static const QStringList ini_list(); - static const std::shared_ptr<QSettings> ini_file(); + static QStringList ini_list(); + static std::shared_ptr<QSettings> ini_file(); template<typename t> t get(const QString& k) const |