diff options
Diffstat (limited to 'Src/Wasabi/api/skin/cursormgr.h')
-rw-r--r-- | Src/Wasabi/api/skin/cursormgr.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Src/Wasabi/api/skin/cursormgr.h b/Src/Wasabi/api/skin/cursormgr.h new file mode 100644 index 00000000..a70d6eaf --- /dev/null +++ b/Src/Wasabi/api/skin/cursormgr.h @@ -0,0 +1,18 @@ +#ifndef __CURSORMGR_H +#define __CURSORMGR_H + +#include <bfc/platform/platform.h> +#include <api/wnd/cursor.h> + +class ifc_window; + +class CursorMgr +{ + public: + CursorMgr() {} + virtual ~CursorMgr() {} + + static OSCURSOR requestCursor(const wchar_t *id); +}; + +#endif |