1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XML resource handler for the grid control
4 // Author: Agron Selimaj
7 // Copyright: (c) 2005 Agron Selimaj, Freepour Controls Inc.
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
14 #if defined(__GNUG__) && !defined(__APPLE__)
15 #pragma interface "xh_grid.cpp"
18 #include "wx/xrc/xmlres.h"
20 #if wxUSE_XRC && wxUSE_GRID
22 class WXDLLIMPEXP_XRC wxGridXmlHandler
: public wxXmlResourceHandler
27 virtual wxObject
*DoCreateResource();
28 virtual bool CanHandle(wxXmlNode
*node
);
31 DECLARE_DYNAMIC_CLASS(wxGridXmlHandler
)
34 #endif // wxUSE_XRC && wxUSE_GRID
36 #endif // _WX_XH_GRD_H_