2008-07-29 16:23:22 -04:00
|
|
|
/* common warning snippet for all osx direct includes */
|
|
|
|
|
|
|
|
#ifndef wxOSX_USE_CARBON
|
2008-09-12 14:30:20 -04:00
|
|
|
#error "this files should only be included after platform.h was included"
|
2008-07-29 16:23:22 -04:00
|
|
|
#endif
|
|
|
|
|
2008-09-02 12:53:23 -04:00
|
|
|
#ifndef _WX_PRIVATE_OSX_H_
|
|
|
|
#define _WX_PRIVATE_OSX_H_
|
|
|
|
|
2008-07-29 16:23:22 -04:00
|
|
|
#if wxOSX_USE_IPHONE
|
|
|
|
#include "wx/osx/iphone/private.h"
|
|
|
|
#elif wxOSX_USE_CARBON
|
|
|
|
#include "wx/osx/carbon/private.h"
|
|
|
|
#elif wxOSX_USE_COCOA
|
|
|
|
#include "wx/osx/cocoa/private.h"
|
2008-06-11 12:30:48 -04:00
|
|
|
#endif
|
2008-09-02 12:53:23 -04:00
|
|
|
|
|
|
|
#endif
|