2023-01-07 12:44:45 +01:00
|
|
|
#ifndef DOWNLOADFILE_H
|
|
|
|
#define DOWNLOADFILE_H
|
|
|
|
|
|
|
|
#include <QObject>
|
2023-01-22 14:33:23 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <cstdlib>
|
2023-01-07 12:44:45 +01:00
|
|
|
|
|
|
|
class MainWindow;
|
|
|
|
|
|
|
|
class downloadFile : public QObject
|
|
|
|
{
|
2024-08-03 15:22:35 +02:00
|
|
|
Q_OBJECT
|
2023-01-07 12:44:45 +01:00
|
|
|
public:
|
2024-08-03 15:22:35 +02:00
|
|
|
downloadFile();
|
|
|
|
bool canceled;
|
2023-01-07 12:44:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DOWNLOADFILE_H
|