mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 06:44:18 +00:00
30 lines
620 B
C++
30 lines
620 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
|
|
*/
|
|
|
|
#ifndef SPELLCHECKINGDATA_H
|
|
#define SPELLCHECKINGDATA_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "kcmoduledata.h"
|
|
|
|
class SpellCheckingSkeleton;
|
|
|
|
class SpellCheckingData : public KCModuleData
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SpellCheckingData(QObject *parent = nullptr, const QVariantList &args = QVariantList());
|
|
SpellCheckingSkeleton *settings() const;
|
|
bool isDefaults() const override;
|
|
|
|
private:
|
|
SpellCheckingSkeleton *m_settings;
|
|
};
|
|
|
|
#endif
|