VMProtect-Source/VMProtect/wait_cursor.h
2023-05-12 20:16:10 +08:00

13 lines
234 B
C++

#ifndef WAITCURSOR_H
#define WAITCURSOR_H
class WaitCursor
{
public:
WaitCursor() { QApplication::setOverrideCursor(QCursor(Qt::WaitCursor)); }
~WaitCursor() { QApplication::restoreOverrideCursor(); }
protected:
private:
};
#endif