cutter/src/analthread.h

29 lines
433 B
C
Raw Normal View History

#ifndef ANALTHREAD_H
#define ANALTHREAD_H
#include <QThread>
class IaitoRCore;
class AnalThread : public QThread
{
2017-04-09 19:55:06 +00:00
Q_OBJECT
public:
explicit AnalThread(QWidget *parent = 0);
~AnalThread();
void start(IaitoRCore *core, int level, QList<QString> advanced);
protected:
void run();
using QThread::start;
private:
IaitoRCore *core;
int level;
QList<QString> advanced;
};
#endif // ANALTHREAD_H