1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/xrc/xh_propdlg.h
3 // Purpose: XML resource handler for wxPropertySheetDialog
4 // Author: Sander Berents
7 // Copyright: (c) 2007 Sander Berents
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_XH_PROPDLG_H_
12 #define _WX_XH_PROPDLG_H_
14 #include "wx/xrc/xmlres.h"
18 class WXDLLIMPEXP_FWD_ADV wxPropertySheetDialog
;
20 class WXDLLIMPEXP_XRC wxPropertySheetDialogXmlHandler
: public wxXmlResourceHandler
22 DECLARE_DYNAMIC_CLASS(wxPropertySheetDialogXmlHandler
)
25 wxPropertySheetDialogXmlHandler();
26 virtual wxObject
*DoCreateResource();
27 virtual bool CanHandle(wxXmlNode
*node
);
31 wxPropertySheetDialog
*m_dialog
;
36 #endif // _WX_XH_PROPDLG_H_