removed PrefixPath debug line
[opentx.git] / companion / src / process_copy.h
blobad41d3c15b06d1c35a62bb8dd67f495ae5b88639
1 #ifndef COPYPROCESS_H_
2 #define COPYPROCESS_H_
4 #include <QObject>
5 #include <QString>
6 #include <QStringList>
8 class ProgressWidget;
10 class CopyProcess : public QObject
12 Q_OBJECT
14 public:
15 CopyProcess(const QString &source, const QString &destination, ProgressWidget *progress);
16 bool run();
18 signals:
19 void finished();
21 protected slots:
22 void onTimer();
24 protected:
25 ProgressWidget *progress;
26 const QString source;
27 const QString destination;
28 bool result;
31 #endif // COPYPROCESS_H_