20 lines
262 B
C++
20 lines
262 B
C++
#ifndef DOWNLOADFILE_H
|
|
#define DOWNLOADFILE_H
|
|
|
|
#include <QObject>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <cstdlib>
|
|
|
|
class MainWindow;
|
|
|
|
class downloadFile : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
downloadFile();
|
|
bool canceled;
|
|
};
|
|
|
|
#endif // DOWNLOADFILE_H
|