vmprotect-3.5.1/VMProtect/wait_cursor.h

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