subsurface/mobile-widgets/qmlprefs.h
jan Iversen d0e9f62624 mobile: add qmlprefs class
add class to cmake and pro
register class

Signed-off-by: Jan Iversen <jani@apache.org>
2018-06-15 14:12:14 -07:00

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