File indexing completed on 2024-05-12 17:07:07

0001 /*
0002     SPDX-FileCopyrightText: 2020 Benjamin Port <benjamin.port@enioka.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 #include "baloodata.h"
0008 #include "kcm.h"
0009 
0010 #include <QVariantList>
0011 
0012 #include <baloo/baloosettings.h>
0013 
0014 using namespace Baloo;
0015 
0016 BalooData::BalooData(QObject *parent, const QVariantList &args)
0017     : KCModuleData(parent, args)
0018     , m_settings(new BalooSettings(this))
0019 {
0020     autoRegisterSkeletons();
0021 }
0022 
0023 BalooSettings *BalooData::settings() const
0024 {
0025     return m_settings;
0026 }
0027 
0028 #include "baloodata.moc"