summaryrefslogtreecommitdiffhomepage
path: root/options/group.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'options/group.hpp')
-rw-r--r--options/group.hpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/options/group.hpp b/options/group.hpp
index 05ef3b4b..f76978ad 100644
--- a/options/group.hpp
+++ b/options/group.hpp
@@ -14,10 +14,9 @@ namespace options {
// snapshot of qsettings group at given time
class OPENTRACK_OPTIONS_EXPORT group final
{
-private:
- std::map<QString, QVariant> kvs;
QString name;
public:
+ std::map<QString, QVariant> kvs;
group(const QString& name);
void save() const;
void save_deferred(QSettings& s) const;
@@ -28,8 +27,6 @@ public:
static QString ini_pathname();
static const QStringList ini_list();
static const std::shared_ptr<QSettings> ini_file();
- bool operator==(const group& other) const;
- bool operator!=(const group& other) const { return !(*this == other); }
template<typename t>
t get(const QString& k) const