kde-extraapps/kget/transfer-plugins/mmsthreads/mmstransferfactory.cpp
Ivailo Monev a6eaf629e1 kget: remove redundant debug area codes
already defaulting to it by defining KDE_DEFAULT_DEBUG_AREA

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-06-21 02:47:50 +03:00

56 lines
1.7 KiB
C++
Executable file

/*
This file is part of the KDE project
Copyright (C) 2011 Ernesto Rodriguez Ortiz <eortiz@uci.cu>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "mmstransferfactory.h"
#include "mmssettings.h"
#include "mmstransfer.h"
#include <kdebug.h>
KGET_EXPORT_PLUGIN( MmsTransferFactory )
MmsTransferFactory::MmsTransferFactory(QObject *parent, const QVariantList &args)
: TransferFactory(parent, args)
{
}
MmsTransferFactory::~MmsTransferFactory()
{
}
Transfer * MmsTransferFactory::createTransfer( const KUrl &srcUrl, const KUrl &destUrl,
TransferGroup * parent,
Scheduler * scheduler)
{
kDebug() << "MmsTransferFactory::createTransfer";
QString prot = srcUrl.protocol();
kDebug() << "Protocol = " << prot;
if (prot == "mms" || prot == "mmsh") {
return new MmsTransfer(parent, this, scheduler, srcUrl, destUrl);
}
return 0;
}
bool MmsTransferFactory::isSupported(const KUrl &url) const
{
QString prot = url.protocol();
kDebug() << "Protocol = " << prot;
return (prot == "mms" || prot == "mmsh");
}