mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-01 11:43:23 +00:00
12 lines
233 B
C++
12 lines
233 B
C++
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#include "qPrefPrivate.h"
|
||
|
|
||
|
qPrefPrivate::qPrefPrivate(QObject *parent) : QObject(parent)
|
||
|
{
|
||
|
}
|
||
|
qPrefPrivate *qPrefPrivate::instance()
|
||
|
{
|
||
|
static qPrefPrivate *self = new qPrefPrivate;
|
||
|
return self;
|
||
|
}
|