File indexing completed on 2025-01-05 04:46:26
0001 /* 0002 SPDX-FileCopyrightText: 2010-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #include "resourcesettings.h" 0008 0009 using namespace Akonadi; 0010 0011 ResourceSettings *ResourceSettings::mSelf = nullptr; 0012 0013 ResourceSettings *ResourceSettings::self() 0014 { 0015 if (!mSelf) { 0016 mSelf = new ResourceSettings(); 0017 mSelf->load(); 0018 } 0019 0020 return mSelf; 0021 } 0022 0023 ResourceSettings::ResourceSettings() 0024 { 0025 } 0026 0027 ResourceSettings::~ResourceSettings() 0028 { 0029 } 0030 0031 #include "moc_resourcesettings.cpp"