kde-extraapps/kget/transfer-plugins/multisegmentkio/transfermultisegkiofactory.h
Ivailo Monev cd46e8aa7f kget: remove default reimplementations in plugins
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2021-08-11 06:24:45 +03:00

36 lines
1.1 KiB
C++

/* This file is part of the KDE project
Copyright (C) 2004 Dario Massarin <nekkar@libero.it>
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 2 of the License, or (at your option) any later version.
*/
#ifndef MULTISEGKIO_FACTORY_H
#define MULTISEGKIO_FACTORY_H
#include "core/plugin/transferfactory.h"
class Transfer;
class TransferGroup;
class Scheduler;
class TransferMultiSegKioFactory : public TransferFactory
{
Q_OBJECT
public:
TransferMultiSegKioFactory(QObject *parent, const QVariantList &args);
~TransferMultiSegKioFactory();
Transfer * createTransfer( const KUrl &srcUrl, const KUrl &destUrl,
TransferGroup * parent, Scheduler * scheduler,
const QDomElement * e = 0 );
TransferDataSource * createTransferDataSource(const KUrl &srcUrl, const QDomElement &type, QObject *parent);
bool isSupported(const KUrl &url) const;
QStringList addsProtocols() const;
};
#endif