mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
22 lines
292 B
C++
22 lines
292 B
C++
#ifndef ANALTHREAD_H
|
|
#define ANALTHREAD_H
|
|
|
|
#include <QThread>
|
|
|
|
class MainWindow;
|
|
|
|
class AnalThread : public QThread
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit AnalThread(MainWindow *w, QWidget *parent = 0);
|
|
void run();
|
|
int level;
|
|
|
|
private:
|
|
|
|
MainWindow *w;
|
|
};
|
|
|
|
#endif // ANALTHREAD_H
|