mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 06:44:18 +00:00
29 lines
564 B
C++
29 lines
564 B
C++
/*
|
|
SPDX-FileCopyrightText: 2020 Benjamin Port <benjamin.port@enioka.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#include "baloodata.h"
|
|
#include "kcm.h"
|
|
|
|
#include <QVariantList>
|
|
|
|
#include <baloo/baloosettings.h>
|
|
|
|
using namespace Baloo;
|
|
|
|
BalooData::BalooData(QObject *parent, const QVariantList &args)
|
|
: KCModuleData(parent, args)
|
|
, m_settings(new BalooSettings(this))
|
|
{
|
|
autoRegisterSkeletons();
|
|
}
|
|
|
|
BalooSettings *BalooData::settings() const
|
|
{
|
|
return m_settings;
|
|
}
|
|
|
|
#include "baloodata.moc"
|