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