cursormgr.h 271 B

123456789101112131415161718
  1. #ifndef __CURSORMGR_H
  2. #define __CURSORMGR_H
  3. #include <bfc/platform/platform.h>
  4. #include <api/wnd/cursor.h>
  5. class ifc_window;
  6. class CursorMgr
  7. {
  8. public:
  9. CursorMgr() {}
  10. virtual ~CursorMgr() {}
  11. static OSCURSOR requestCursor(const wchar_t *id);
  12. };
  13. #endif