rssguard/src/network-web/downloader.h

25 lines
415 B
C
Raw Normal View History

2014-04-11 12:21:00 +02:00
#ifndef DOWNLOADER_H
#define DOWNLOADER_H
#include <QObject>
class Downloader : public QObject {
Q_OBJECT
public:
// Constructors and destructors.
explicit Downloader(QObject *parent = 0);
virtual ~Downloader();
// TODO: zakladni downloader s timeoutem a signalem kerej informuje o prubehu
// stahovani
signals:
public slots:
};
#endif // DOWNLOADER_H