put GetEscapeId() inside #if wxABI_VERSION > 20601
[wxWidgets.git] / include / wx / region.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/region.h
3 // Purpose: Base header for wxRegion
4 // Author: Julian Smart
5 // Modified by:
6 // Created:
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows Licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_REGION_H_BASE_
13 #define _WX_REGION_H_BASE_
14
15 #include "wx/colour.h"
16
17 #if defined(__WXPALMOS__)
18 #include "wx/palmos/region.h"
19 #elif defined(__WXMSW__)
20 #include "wx/msw/region.h"
21 #elif defined(__WXGTK__)
22 #include "wx/gtk/region.h"
23 #elif defined(__WXMOTIF__) || defined(__WXX11__)
24 #include "wx/x11/region.h"
25 #elif defined(__WXMGL__)
26 #include "wx/mgl/region.h"
27 #elif defined(__WXMAC__)
28 #include "wx/mac/region.h"
29 #elif defined(__WXCOCOA__)
30 #include "wx/cocoa/region.h"
31 #elif defined(__WXPM__)
32 #include "wx/os2/region.h"
33 #endif
34
35 #endif
36 // _WX_REGION_H_BASE_