KTextAddons

textautogenerateengineplugin.h
1/*
2 SPDX-FileCopyrightText: 2025 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8#include "textautogeneratetext_export.h"
9#include <QObject>
10#include <memory>
11namespace TextAutogenerateText
12{
13class TextAutogenerateEnginePluginPrivate;
14/**
15 * @brief The TextAutogenerateEnginePlugin class
16 * @author Laurent Montel <montel@kde.org>
17 */
18class TEXTAUTOGENERATETEXT_EXPORT TextAutogenerateEnginePlugin : public QObject
19{
21public:
22 explicit TextAutogenerateEnginePlugin(QObject *parent = nullptr);
23 ~TextAutogenerateEnginePlugin() override;
24
25private:
26 std::unique_ptr<TextAutogenerateEnginePluginPrivate> const d;
27};
28}
QObject(QObject *parent)
Q_OBJECTQ_OBJECT
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri May 2 2025 12:06:03 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.