mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
d0e9f62624
add class to cmake and pro register class Signed-off-by: Jan Iversen <jani@apache.org>
25 lines
283 B
C++
25 lines
283 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef QMLPREFS_H
|
|
#define QMLPREFS_H
|
|
|
|
#include <QObject>
|
|
|
|
|
|
class QMLPrefs : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QMLPrefs();
|
|
~QMLPrefs();
|
|
|
|
static QMLPrefs *instance();
|
|
|
|
public slots:
|
|
|
|
private:
|
|
static QMLPrefs *m_instance;
|
|
|
|
signals:
|
|
};
|
|
|
|
#endif
|