1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-29 03:45:32 +00:00
openmw-tes3mp/apps/opencs/model/tools/operation.hpp
2012-12-08 15:25:50 +01:00

35 lines
No EOL
495 B
C++

#ifndef CSM_TOOLS_OPERATION_H
#define CSM_TOOLS_OPERATION_H
#include <QThread>
namespace CSMTools
{
class Operation : public QThread
{
Q_OBJECT
int mType;
int mStep;
public:
Operation (int type);
virtual void run();
signals:
void progress (int current, int max, int type);
public slots:
void abort();
private slots:
void verify();
};
}
#endif