diff --git a/src/kmailtransport/plugins/transportabstractplugin.h b/src/kmailtransport/plugins/transportabstractplugin.h index e0b5160..2ad38c5 100644 --- a/src/kmailtransport/plugins/transportabstractplugin.h +++ b/src/kmailtransport/plugins/transportabstractplugin.h @@ -1,57 +1,64 @@ /* Copyright (C) 2017-2019 Laurent Montel This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef TRANSPORTABSTRACTPLUGIN_H #define TRANSPORTABSTRACTPLUGIN_H #include #include #include "mailtransport_export.h" namespace MailTransport { class TransportJob; class Transport; - +/** + * @brief The TransportAbstractPluginInfo struct + * @author Laurent Montel + */ struct MAILTRANSPORT_EXPORT TransportAbstractPluginInfo { QString name; QString identifier; QString description; bool isAkonadi = false; }; +/** + * @brief The TransportAbstractPlugin class + * @author Laurent Montel + */ class MAILTRANSPORT_EXPORT TransportAbstractPlugin : public QObject { Q_OBJECT public: explicit TransportAbstractPlugin(QObject *parent = nullptr); ~TransportAbstractPlugin(); Q_REQUIRED_RESULT virtual TransportJob *createTransportJob(MailTransport::Transport *t, const QString &identifier) = 0; Q_REQUIRED_RESULT virtual QVector names() const = 0; Q_REQUIRED_RESULT virtual bool configureTransport(const QString &identifier, Transport *transport, QWidget *parent) = 0; virtual void cleanUp(MailTransport::Transport *t); virtual void initializeTransport(MailTransport::Transport *t, const QString &identifier); Q_SIGNALS: void updatePluginList(); }; } Q_DECLARE_TYPEINFO(MailTransport::TransportAbstractPluginInfo, Q_MOVABLE_TYPE); #endif // TRANSPORTABSTRACTPLUGIN_H