first commit

This commit is contained in:
2023-01-07 12:44:45 +01:00
parent 1e9f40ec9b
commit a76f32ea30
12 changed files with 1419 additions and 0 deletions

24
downloadfile.h Normal file
View File

@ -0,0 +1,24 @@
#ifndef DOWNLOADFILE_H
#define DOWNLOADFILE_H
#include <QObject>
#include "ui_mainwindow.h"
class MainWindow;
class downloadFile : public QObject
{
Q_OBJECT
public:
downloadFile();
void download(QString savePath, MainWindow *parent = nullptr);
bool canceled;
signals:
void progressSignal(int);
public slots:
void cancelled();
};
#endif // DOWNLOADFILE_H