The Winamp Remote Control suite
a remote control client and plugin for Winamp 2.x, 5.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
CursorGuard.cpp
Go to the documentation of this file.
1 /*
2  * CursorGuard.cpp
3  *
4  * Created on: 24 Mar 2013
5  * Author: Patrick
6  */
7 
8 #include "CursorGuard.h"
9 
10 namespace WinampRemote
11 {
12 namespace Utils
13 {
14 
15 CursorGuard::CursorGuard(Controls::TCursor newCursor)
16 {
17  m_cursor = Screen->Cursor;
18  Screen->Cursor = newCursor;
19 
20 }
21 
23 {
24  Screen->Cursor = m_cursor;
25 }
26 
27 } /* namespace Utils */
28 } /* namespace WinampRemote */