summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qmlprefs.h
blob: 2755014e842c4905f3ce616e5205620d1b2092fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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