mirror of
https://github.com/Alukym/VMProtect-Source.git
synced 2025-06-07 18:17:49 -05:00
13 lines
234 B
C++
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 |