]> git.saurik.com Git - wxWidgets.git/blob - include/wx/xrc/xh_grid.h
replace wrong WXDLLEXPORT declarations with correct WXDLLIMPEXP_BASE/ADV/GL (patch...
[wxWidgets.git] / include / wx / xrc / xh_grid.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/xrc/xh_grid.h
3 // Purpose: XML resource handler for wxGrid
4 // Author: Agron Selimaj
5 // Created: 2005/08/11
6 // RCS-ID: $Id$
7 // Copyright: (c) 2005 Agron Selimaj, Freepour Controls Inc.
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_XH_GRD_H_
12 #define _WX_XH_GRD_H_
13
14 #include "wx/xrc/xmlres.h"
15
16 #if wxUSE_XRC && wxUSE_GRID
17
18 class WXDLLIMPEXP_XRC wxGridXmlHandler : public wxXmlResourceHandler
19 {
20 DECLARE_DYNAMIC_CLASS(wxGridXmlHandler)
21
22 public:
23 wxGridXmlHandler();
24
25 virtual wxObject *DoCreateResource();
26 virtual bool CanHandle(wxXmlNode *node);
27 };
28
29 #endif // wxUSE_XRC && wxUSE_GRID
30
31 #endif // _WX_XH_GRD_H_