aboutsummaryrefslogtreecommitdiff
path: root/Src/Wasabi/api/skin/cursormgr.h
blob: a70d6eaf8bea54808f7ea8e54ab0d6e1e2571d59 (plain) (blame)
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