File indexing completed on 2024-09-22 04:47:56

0001 /*
0002     SPDX-FileCopyrightText: 2017-2024 Laurent Montel <montel@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "transportabstractplugin.h"
0008 using namespace MailTransport;
0009 
0010 TransportAbstractPlugin::TransportAbstractPlugin(QObject *parent)
0011     : QObject(parent)
0012 {
0013 }
0014 
0015 TransportAbstractPlugin::~TransportAbstractPlugin() = default;
0016 
0017 void TransportAbstractPlugin::cleanUp(MailTransport::Transport *t)
0018 {
0019     Q_UNUSED(t)
0020 }
0021 
0022 void TransportAbstractPlugin::initializeTransport(MailTransport::Transport *t, const QString &identifier)
0023 {
0024     Q_UNUSED(identifier)
0025     Q_UNUSED(t)
0026 }
0027 
0028 #include "moc_transportabstractplugin.cpp"