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;
14class TEXTAUTOGENERATETEXT_EXPORT TextAutogenerateEnginePlugin : public QObject
15{
16 Q_OBJECT
17public:
18 explicit TextAutogenerateEnginePlugin(QObject *parent = nullptr);
19 ~TextAutogenerateEnginePlugin() override;
20
21private:
22 std::unique_ptr<TextAutogenerateEnginePluginPrivate> const d;
23};
24}
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 18 2025 12:00:52 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.