]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_ICON_H_BASE_ |
2 | #define _WX_ICON_H_BASE_ | |
c801d85f | 3 | |
aaf7ab43 | 4 | #include "wx/iconloc.h" |
03f38c58 | 5 | |
2049ba38 | 6 | #if defined(__WXMSW__) |
03f38c58 | 7 | #include "wx/msw/icon.h" |
2049ba38 | 8 | #elif defined(__WXMOTIF__) |
03f38c58 | 9 | #include "wx/motif/icon.h" |
2049ba38 | 10 | #elif defined(__WXGTK__) |
03f38c58 | 11 | #include "wx/gtk/icon.h" |
83df96d6 JS |
12 | #elif defined(__WXX11__) |
13 | #include "wx/x11/icon.h" | |
1e6feb95 VZ |
14 | #elif defined(__WXMGL__) |
15 | #include "wx/mgl/icon.h" | |
34138703 | 16 | #elif defined(__WXMAC__) |
03f38c58 | 17 | #include "wx/mac/icon.h" |
e64df9bc DE |
18 | #elif defined(__WXCOCOA__) |
19 | #include "wx/cocoa/icon.h" | |
1777b9bb DW |
20 | #elif defined(__WXPM__) |
21 | #include "wx/os2/icon.h" | |
c801d85f KB |
22 | #endif |
23 | ||
24 | #endif | |
34138703 | 25 | // _WX_ICON_H_BASE_ |