-/////////////////////////////////////////////////////////////////////////////\r
-// Name: wx/xrc/xh_propdlg.h\r
-// Purpose: XML resource handler for wxPropertySheetDialog\r
-// Author: Sander Berents\r
-// Created: 2007/07/12\r
-// RCS-ID: $Id$\r
-// Copyright: (c) 2007 Sander Berents\r
-// Licence: wxWindows licence\r
-/////////////////////////////////////////////////////////////////////////////\r
-\r
-#ifndef _WX_XH_PROPDLG_H_\r
-#define _WX_XH_PROPDLG_H_\r
-\r
-#include "wx/xrc/xmlres.h"\r
-\r
-#if wxUSE_XRC\r
-\r
-class WXDLLEXPORT wxPropertySheetDialog;\r
-\r
-class WXDLLIMPEXP_XRC wxPropertySheetDialogXmlHandler : public wxXmlResourceHandler\r
-{\r
- DECLARE_DYNAMIC_CLASS(wxPropertySheetDialogXmlHandler)\r
-\r
-public:\r
- wxPropertySheetDialogXmlHandler();\r
- virtual wxObject *DoCreateResource();\r
- virtual bool CanHandle(wxXmlNode *node);\r
-\r
-private:\r
- bool m_isInside;\r
- wxPropertySheetDialog *m_dialog;\r
-};\r
-\r
-#endif // wxUSE_XRC\r
-\r
-#endif // _WX_XH_PROPDLG_H_\r
+/////////////////////////////////////////////////////////////////////////////
+// Name: wx/xrc/xh_propdlg.h
+// Purpose: XML resource handler for wxPropertySheetDialog
+// Author: Sander Berents
+// Created: 2007/07/12
+// RCS-ID: $Id$
+// Copyright: (c) 2007 Sander Berents
+// Licence: wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
+#ifndef _WX_XH_PROPDLG_H_
+#define _WX_XH_PROPDLG_H_
+
+#include "wx/xrc/xmlres.h"
+
+#if wxUSE_XRC
+
+class WXDLLIMPEXP_FWD_ADV wxPropertySheetDialog;
+
+class WXDLLIMPEXP_XRC wxPropertySheetDialogXmlHandler : public wxXmlResourceHandler
+{
+ DECLARE_DYNAMIC_CLASS(wxPropertySheetDialogXmlHandler)
+
+public:
+ wxPropertySheetDialogXmlHandler();
+ virtual wxObject *DoCreateResource();
+ virtual bool CanHandle(wxXmlNode *node);
+
+private:
+ bool m_isInside;
+ wxPropertySheetDialog *m_dialog;
+};
+
+#endif // wxUSE_XRC
+
+#endif // _WX_XH_PROPDLG_H_