]>
Commit | Line | Data |
---|---|---|
4a4a8111 RN |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: drawer.h | |
3 | // Purpose: wxDrawerWindow class | |
4 | // Author: Ryan Norton | |
5 | // Modified by: | |
6 | // Created: 9/27/2004 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWidgets team | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_DRAWER_H_BASE_ | |
13 | #define _WX_DRAWER_H_BASE_ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | ||
17 | #if defined(__WXMAC_OSX__) && ( MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_2 ) | |
18 | # include "wx/mac/carbon/drawer.h" | |
19 | #else | |
20 | # include "wx/generic/drawerg.h" | |
ed7e3b9a | 21 | # define wxDrawerWindow wxGenericDrawerWindow |
4a4a8111 RN |
22 | #endif |
23 | ||
24 | #endif // _WX_DRAWER_H_BASE_ | |
25 |