]>
Commit | Line | Data |
---|---|---|
1 | /* common warning snippet for all osx direct includes */ | |
2 | ||
3 | #ifndef wxOSX_USE_CARBON | |
4 | #error "this files should only be included after platform.h was included" | |
5 | #endif | |
6 | ||
7 | #ifndef _WX_PRIVATE_OSX_H_ | |
8 | #define _WX_PRIVATE_OSX_H_ | |
9 | ||
10 | #if wxOSX_USE_IPHONE | |
11 | #include "wx/osx/iphone/private.h" | |
12 | #elif wxOSX_USE_CARBON | |
13 | #include "wx/osx/carbon/private.h" | |
14 | #elif wxOSX_USE_COCOA | |
15 | #include "wx/osx/cocoa/private.h" | |
16 | #endif | |
17 | ||
18 | #endif |