mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-22 23:54:01 +00:00
33 lines
436 B
C++
33 lines
436 B
C++
#ifndef CSM_TOOLS_VERIFIER_H
|
|
#define CSM_TOOLS_VERIFIER_H
|
|
|
|
#include <QThread>
|
|
|
|
namespace CSMTools
|
|
{
|
|
class Verifier : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
int mStep;
|
|
|
|
public:
|
|
|
|
virtual void run();
|
|
|
|
signals:
|
|
|
|
void progress (int current, int max, int type);
|
|
|
|
public slots:
|
|
|
|
void abort();
|
|
|
|
private slots:
|
|
|
|
void verify();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|