X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..13d843f1c15fe721f03d933c600cd5ca62944003:/include/wx/xrc/xh_mdi.h diff --git a/include/wx/xrc/xh_mdi.h b/include/wx/xrc/xh_mdi.h index 69327ca5e7..4eab9a0237 100644 --- a/include/wx/xrc/xh_mdi.h +++ b/include/wx/xrc/xh_mdi.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// -// 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$ @@ -13,12 +13,14 @@ #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(); @@ -26,10 +28,8 @@ public: private: wxWindow *CreateFrame(); - - DECLARE_DYNAMIC_CLASS(wxMdiXmlHandler) }; -#endif // wxUSE_MDI +#endif // wxUSE_XRC && wxUSE_MDI #endif // _WX_XH_MDI_H_