QortalOS Brooklyn for Raspberry Pi 4
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
558 B

/*
SPDX-FileCopyrightText: 2020 Cyril Rossi <[email protected]>
SPDX-License-Identifier: LGPL-2.0-only
*/
#ifndef KRUNNERDATA_H
#define KRUNNERDATA_H
#include <QObject>
#include <KCModuleData>
#include <KSharedConfig>
class KRunnerSettings;
class KRunnerData : public KCModuleData
{
Q_OBJECT
public:
KRunnerData(QObject *parent = nullptr, const QVariantList &args = QVariantList());
bool isDefaults() const override;
private:
KSharedConfigPtr m_krunnerConfig;
KRunnerSettings *m_settings;
};
#endif // KRUNNERDATA_H