1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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