mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
/* This file is part of the KDE project
|
|
|
|
Copyright (C) 2004 Dario Massarin <nekkar@libero.it>
|
|
Copyright (C) 2012 Aish Raj Dahal <dahalaishraj@gmail.com>
|
|
|
|
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 METALINK_FACTORY_H
|
|
#define METALINK_FACTORY_H
|
|
|
|
#include "core/plugin/transferfactory.h"
|
|
#include "ui/metalinkcreator/metalinker.h"
|
|
|
|
class Transfer;
|
|
class TransferGroup;
|
|
class Scheduler;
|
|
|
|
|
|
class MetalinkFactory : public TransferFactory
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MetalinkFactory(QObject *parent, const QVariantList &args);
|
|
~MetalinkFactory();
|
|
|
|
Transfer * createTransfer( const KUrl &srcUrl, const KUrl &destUrl,
|
|
TransferGroup * parent, Scheduler * scheduler,
|
|
const QDomElement * e = 0 );
|
|
|
|
/**
|
|
* Checks if a URL is supported by this plugin.
|
|
*
|
|
* @param The Url to be tested
|
|
* @return True if the URL is a metalink (xml or http).
|
|
*/
|
|
bool isSupported(const KUrl &url) const;
|
|
};
|
|
|
|
#endif
|