X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e8a793f06cc0abb9e2433b1fe518c836395c8b49..9869c26285dc51d13607cddaa04f65ce983653a5:/include/wx/xrc/xh_notbk.h diff --git a/include/wx/xrc/xh_notbk.h b/include/wx/xrc/xh_notbk.h index 2f547b07f4..aa24fc8716 100644 --- a/include/wx/xrc/xh_notbk.h +++ b/include/wx/xrc/xh_notbk.h @@ -2,7 +2,6 @@ // Name: wx/xrc/xh_notbk.h // Purpose: XML resource handler for wxNotebook // Author: Vaclav Slavik -// RCS-ID: $Id$ // Copyright: (c) 2000 Vaclav Slavik // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -12,13 +11,14 @@ #include "wx/xrc/xmlres.h" -#if wxUSE_NOTEBOOK +#if wxUSE_XRC && wxUSE_NOTEBOOK -class WXDLLEXPORT wxNotebook; +class WXDLLIMPEXP_FWD_CORE wxNotebook; class WXDLLIMPEXP_XRC wxNotebookXmlHandler : public wxXmlResourceHandler { -DECLARE_DYNAMIC_CLASS(wxNotebookXmlHandler) + DECLARE_DYNAMIC_CLASS(wxNotebookXmlHandler) + public: wxNotebookXmlHandler(); virtual wxObject *DoCreateResource(); @@ -29,6 +29,6 @@ private: wxNotebook *m_notebook; }; -#endif +#endif // wxUSE_XRC && wxUSE_NOTEBOOK #endif // _WX_XH_NOTBK_H_