aboutsummaryrefslogtreecommitdiff
path: root/VMProtect/wait_cursor.h
blob: 1f307f4149e2ca03c5a41a5697e25d2aa5c16b00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef WAITCURSOR_H
#define WAITCURSOR_H

class WaitCursor
{
public:
	WaitCursor() { QApplication::setOverrideCursor(QCursor(Qt::WaitCursor)); }
	~WaitCursor() { QApplication::restoreOverrideCursor(); }
protected:
private:
};

#endif