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