| 1 |
|
#ifndef CONVERTER_H |
| 2 |
|
#define CONVERTER_H |
| 3 |
|
#include <QProcess> |
| 4 |
– |
#include <logger.h> |
| 4 |
|
#include <QProgressBar> |
| 5 |
|
#include <QThread> |
| 6 |
< |
#include <util.h> |
| 7 |
< |
#include <QDebug> |
| 6 |
> |
|
| 7 |
> |
#include "logger.h" |
| 8 |
> |
#include "util.h" |
| 9 |
> |
//#include <QDebug> |
| 10 |
|
|
| 11 |
|
class Converter : public QThread |
| 12 |
|
{ |
| 13 |
|
Q_OBJECT |
| 14 |
|
public: |
| 15 |
< |
Converter(Logger *myLogger, QStringList *myData); |
| 15 |
> |
Converter(QString AppDir, Logger *myLogger, QStringList *myData); |
| 16 |
|
private: |
| 17 |
+ |
QString AppDir; |
| 18 |
|
Logger *myLogger; |
| 19 |
|
QStringList *myData; |
| 20 |
|
|