File indexing completed on 2024-06-23 05:18:35

0001 /*
0002    SPDX-FileCopyrightText: 2017-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "messagecomposer_export.h"
0010 #include <MessageComposer/PluginEditorBase>
0011 #include <QObject>
0012 
0013 namespace MessageComposer
0014 {
0015 class PluginEditorInitInterface;
0016 /**
0017  * @brief The PluginEditorInit class
0018  * @author Laurent Montel <montel@kde.org>
0019  */
0020 class MESSAGECOMPOSER_EXPORT PluginEditorInit : public PluginEditorBase
0021 {
0022     Q_OBJECT
0023 public:
0024     explicit PluginEditorInit(QObject *parent = nullptr);
0025     ~PluginEditorInit() override;
0026 
0027     virtual PluginEditorInitInterface *createInterface(QObject *parent) = 0;
0028 };
0029 }