subsurface/core/settings/qPref.h
Berthold Stoeger a89b36c661 Cleanup: don't instantiate a QPref object
QPref has only static functions. There seems to be no point in
instantiating a singleton of this object. Remove the instance()
method and remove the Q_OBJECT macro.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2019-04-04 09:29:45 -07:00

21 lines
415 B
C++

// SPDX-License-Identifier: GPL-2.0
#ifndef QPREF_H
#define QPREF_H
#include "core/pref.h"
#include <QObject>
#include <QQmlEngine>
class qPref {
public:
// Load/Sync local settings (disk) and struct preference
static void load() { loadSync(false); }
static void sync() { loadSync(true); }
// Register QML
static void registerQML(QQmlEngine *engine);
private:
static void loadSync(bool doSync);
};
#endif