2008-07-29 20:23:22 +00:00
|
|
|
/* common warning snippet for all osx direct includes */
|
|
|
|
|
|
|
|
#ifndef wxOSX_USE_CARBON
|
2008-09-12 18:30:20 +00:00
|
|
|
#error "this files should only be included after platform.h was included"
|
2008-07-29 20:23:22 +00:00
|
|
|
#endif
|
|
|
|
|
2008-09-02 16:53:23 +00:00
|
|
|
#ifndef _WX_PRIVATE_OSX_H_
|
|
|
|
#define _WX_PRIVATE_OSX_H_
|
|
|
|
|
2008-07-29 20:23:22 +00: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 16:30:48 +00:00
|
|
|
#endif
|
2008-09-02 16:53:23 +00:00
|
|
|
|
2009-12-05 19:57:58 +00:00
|
|
|
#endif
|