17 lines
250 B
C++
17 lines
250 B
C++
#ifndef FILEDOWNLOADWORKER_H
|
|
#define FILEDOWNLOADWORKER_H
|
|
|
|
#include <QObject>
|
|
|
|
class FileDownloadWorker : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit FileDownloadWorker(QObject *parent = nullptr);
|
|
|
|
signals:
|
|
|
|
};
|
|
|
|
#endif // FILEDOWNLOADWORKER_H
|