rsyncui/downloadfile.h

21 lines
272 B
C
Raw Normal View History

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
{
Q_OBJECT
public:
downloadFile();
bool canceled;
};
#endif // DOWNLOADFILE_H