diff options
Diffstat (limited to 'core/settings/qPref.cpp')
-rw-r--r-- | core/settings/qPref.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/core/settings/qPref.cpp b/core/settings/qPref.cpp new file mode 100644 index 000000000..b703c1fcb --- /dev/null +++ b/core/settings/qPref.cpp @@ -0,0 +1,18 @@ +// SPDX-License-Identifier: GPL-2.0 +#include "qPref_private.h" +#include "qPref.h" + + +qPref *qPref::m_instance = NULL; +qPref *qPref::instance() +{ + if (!m_instance) + m_instance = new qPref; + return m_instance; +} + + + +void qPref::loadSync(bool doSync) +{ +} |