mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
20 lines
289 B
C
20 lines
289 B
C
|
#ifndef PROGRESSBARDRAWER_H
|
||
|
#define PROGRESSBARDRAWER_H
|
||
|
|
||
|
#pragma once
|
||
|
#include "nesca_3.h"
|
||
|
|
||
|
class ProgressbarDrawer : public QThread
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public: signals: void upd();
|
||
|
public:
|
||
|
void update();
|
||
|
protected:
|
||
|
void run();
|
||
|
};
|
||
|
extern ProgressbarDrawer *pbTh;
|
||
|
|
||
|
#endif // PROGRESSBARDRAWER_H
|