]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_REGION_H_BASE_ |
2 | #define _WX_REGION_H_BASE_ | |
c801d85f | 3 | |
c87beb79 VZ |
4 | #include "wx/colour.h" |
5 | ||
4055ed82 | 6 | #if defined(__WXPALMOS__) |
c87beb79 | 7 | #include "wx/palmos/region.h" |
ffecfa5a | 8 | #elif defined(__WXMSW__) |
c87beb79 | 9 | #include "wx/msw/region.h" |
2049ba38 | 10 | #elif defined(__WXGTK__) |
c87beb79 VZ |
11 | #include "wx/gtk/region.h" |
12 | #elif defined(__WXMOTIF__) || defined(__WXX11__) | |
13 | #include "wx/x11/region.h" | |
d32cad2c | 14 | #elif defined(__WXMGL__) |
c87beb79 | 15 | #include "wx/mgl/region.h" |
34138703 | 16 | #elif defined(__WXMAC__) |
c87beb79 | 17 | #include "wx/mac/region.h" |
e64df9bc | 18 | #elif defined(__WXCOCOA__) |
c87beb79 | 19 | #include "wx/cocoa/region.h" |
1777b9bb | 20 | #elif defined(__WXPM__) |
c87beb79 | 21 | #include "wx/os2/region.h" |
c801d85f KB |
22 | #endif |
23 | ||
24 | #endif | |
34138703 | 25 | // _WX_REGION_H_BASE_ |