]>
Commit | Line | Data |
---|---|---|
99d80019 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/imaglist.h | |
3 | // Purpose: wxImageList base header | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: | |
7 | // Copyright: (c) Julian Smart | |
8 | // RCS-ID: $Id$ | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
34138703 JS |
12 | #ifndef _WX_IMAGLIST_H_BASE_ |
13 | #define _WX_IMAGLIST_H_BASE_ | |
c801d85f | 14 | |
b31989e2 | 15 | #if defined(__WIN32__) && !defined(__WXUNIVERSAL__) |
b54e41c5 | 16 | #include "wx/msw/imaglist.h" |
32c19f25 SC |
17 | #elif defined(__WXMAC_CARBON__) |
18 | #include "wx/mac/imaglist.h" | |
b31989e2 JS |
19 | #else |
20 | #include "wx/generic/imaglist.h" | |
c801d85f KB |
21 | #endif |
22 | ||
23 | #endif | |
34138703 | 24 | // _WX_IMAGLIST_H_BASE_ |