ed7e3b9a69
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29446 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
26 lines
705 B
C
26 lines
705 B
C
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: drawer.h
|
|
// Purpose: wxDrawerWindow class
|
|
// Author: Ryan Norton
|
|
// Modified by:
|
|
// Created: 9/27/2004
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) wxWidgets team
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_DRAWER_H_BASE_
|
|
#define _WX_DRAWER_H_BASE_
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#if defined(__WXMAC_OSX__) && ( MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_2 )
|
|
# include "wx/mac/carbon/drawer.h"
|
|
#else
|
|
# include "wx/generic/drawerg.h"
|
|
# define wxDrawerWindow wxGenericDrawerWindow
|
|
#endif
|
|
|
|
#endif // _WX_DRAWER_H_BASE_
|
|
|