X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6def7a17b01a15e68696a1863d114ecc5554e3d4..9869c26285dc51d13607cddaa04f65ce983653a5:/include/wx/xrc/xh_mdi.h diff --git a/include/wx/xrc/xh_mdi.h b/include/wx/xrc/xh_mdi.h index f17d8e9294..6634318386 100644 --- a/include/wx/xrc/xh_mdi.h +++ b/include/wx/xrc/xh_mdi.h @@ -1,9 +1,8 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_mdi.h -// Purpose: XML resource handler for dialogs +// Name: wx/xrc/xh_mdi.h +// Purpose: XML resource handler for wxMDI // Author: David M. Falkinder & Vaclav Slavik // Created: 14/02/2005 -// RCS-ID: $Id$ // Copyright: (c) 2005 Vaclav Slavik // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -11,18 +10,16 @@ #ifndef _WX_XH_MDI_H_ #define _WX_XH_MDI_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "xh_mdi.h" -#endif - #include "wx/xrc/xmlres.h" -#if wxUSE_MDI +#if wxUSE_XRC && wxUSE_MDI -class WXDLLIMPEXP_CORE wxWindow; +class WXDLLIMPEXP_FWD_CORE wxWindow; class WXDLLIMPEXP_XRC wxMdiXmlHandler : public wxXmlResourceHandler { + DECLARE_DYNAMIC_CLASS(wxMdiXmlHandler) + public: wxMdiXmlHandler(); virtual wxObject *DoCreateResource(); @@ -30,10 +27,8 @@ public: private: wxWindow *CreateFrame(); - - DECLARE_DYNAMIC_CLASS(wxMdiXmlHandler) }; -#endif // wxUSE_MDI +#endif // wxUSE_XRC && wxUSE_MDI #endif // _WX_XH_MDI_H_