videodownloader/network/finder/linkfinder.h

27 lines
458 B
C
Raw Normal View History

2015-04-22 19:32:04 +02:00
#ifndef LINKFINDER_H
#define LINKFINDER_H
2015-09-08 17:05:59 +02:00
#include "./downloadfinder.h"
2015-04-22 19:32:04 +02:00
#include <QUrl>
namespace Network {
2017-05-01 03:22:50 +02:00
class LinkFinder : public DownloadFinder {
2015-04-22 19:32:04 +02:00
Q_OBJECT
public:
explicit LinkFinder(const QUrl &url, QObject *parent = nullptr);
protected:
Download *createRequest(QString &);
protected slots:
ParsingResult parseResults(const QByteArray &data, QString &);
private:
QUrl m_url;
};
2019-07-20 20:20:58 +02:00
} // namespace Network
2015-04-22 19:32:04 +02:00
#endif // LINKFINDER_H