]> git.saurik.com Git - wxWidgets.git/blame - include/wx/xrc/xh_scwin.h
Don't define __STRICT_ANSI__, we should build both with and without it.
[wxWidgets.git] / include / wx / xrc / xh_scwin.h
CommitLineData
2b5f62a0 1/////////////////////////////////////////////////////////////////////////////
e8a793f0 2// Name: wx/xrc/xh_scwin.h
2b5f62a0
VZ
3// Purpose: XML resource handler for wxScrolledWindow
4// Author: Vaclav Slavik
5// Created: 2002/10/18
2b5f62a0
VZ
6// Copyright: (c) 2002 Vaclav Slavik
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_XH_SCWIN_H_
11#define _WX_XH_SCWIN_H_
12
2b5f62a0 13#include "wx/xrc/xmlres.h"
2b5f62a0 14
dd47af27 15#if wxUSE_XRC
2b5f62a0 16
30dc3455 17class WXDLLIMPEXP_XRC wxScrolledWindowXmlHandler : public wxXmlResourceHandler
2b5f62a0 18{
dd47af27
VZ
19 DECLARE_DYNAMIC_CLASS(wxScrolledWindowXmlHandler)
20
2b5f62a0
VZ
21public:
22 wxScrolledWindowXmlHandler();
23 virtual wxObject *DoCreateResource();
24 virtual bool CanHandle(wxXmlNode *node);
25};
26
dd47af27 27#endif // wxUSE_XRC
2b5f62a0
VZ
28
29#endif // _WX_XH_SCWIN_H_