X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..9869c26285dc51d13607cddaa04f65ce983653a5:/include/wx/xrc/xh_mdi.h?ds=inline diff --git a/include/wx/xrc/xh_mdi.h b/include/wx/xrc/xh_mdi.h index 69327ca5e7..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 ///////////////////////////////////////////////////////////////////////////// @@ -13,12 +12,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 +27,8 @@ public: private: wxWindow *CreateFrame(); - - DECLARE_DYNAMIC_CLASS(wxMdiXmlHandler) }; -#endif // wxUSE_MDI +#endif // wxUSE_XRC && wxUSE_MDI #endif // _WX_XH_MDI_H_