X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ab7ce33c563651f790f99d64ee56727706047ae3..c90e98dcb66aa20cf64fa0f5633026c2f74dab1a:/include/wx/xrc/xh_notbk.h diff --git a/include/wx/xrc/xh_notbk.h b/include/wx/xrc/xh_notbk.h index 07f9f1a017..2d1131c295 100644 --- a/include/wx/xrc/xh_notbk.h +++ b/include/wx/xrc/xh_notbk.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_notbk.h +// Name: wx/xrc/xh_notbk.h // Purpose: XML resource handler for wxNotebook // Author: Vaclav Slavik // RCS-ID: $Id$ @@ -10,18 +10,16 @@ #ifndef _WX_XH_NOTBK_H_ #define _WX_XH_NOTBK_H_ -#if defined(__GNUG__) && !defined(__APPLE__) -#pragma interface "xh_notbk.h" -#endif - #include "wx/xrc/xmlres.h" -#if wxUSE_NOTEBOOK +#if wxUSE_XRC && wxUSE_NOTEBOOK -class WXDLLEXPORT wxNotebook; +class WXDLLIMPEXP_FWD_CORE wxNotebook; -class WXXMLDLLEXPORT wxNotebookXmlHandler : public wxXmlResourceHandler +class WXDLLIMPEXP_XRC wxNotebookXmlHandler : public wxXmlResourceHandler { + DECLARE_DYNAMIC_CLASS(wxNotebookXmlHandler) + public: wxNotebookXmlHandler(); virtual wxObject *DoCreateResource(); @@ -32,6 +30,6 @@ private: wxNotebook *m_notebook; }; -#endif +#endif // wxUSE_XRC && wxUSE_NOTEBOOK #endif // _WX_XH_NOTBK_H_