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