]>
Commit | Line | Data |
---|---|---|
28c0bed3 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_stlin.h | |
3 | // Purpose: XML resource handler for wxStaticLine | |
4 | // Author: Vaclav Slavik | |
5 | // Created: 2000/09/00 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2000 Vaclav Slavik | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef _WX_XH_STLIN_H_ | |
12 | #define _WX_XH_STLIN_H_ | |
13 | ||
ab7ce33c | 14 | #if defined(__GNUG__) && !defined(__APPLE__) |
28c0bed3 VS |
15 | #pragma interface "xh_stlin.h" |
16 | #endif | |
17 | ||
999d9a9f | 18 | #include "wx/xrc/xmlres.h" |
28c0bed3 VS |
19 | |
20 | #if wxUSE_STATLINE | |
21 | ||
30dc3455 | 22 | class WXDLLIMPEXP_XRC wxStaticLineXmlHandler : public wxXmlResourceHandler |
28c0bed3 | 23 | { |
854e189f | 24 | DECLARE_DYNAMIC_CLASS(wxStaticLineXmlHandler) |
eb8671f2 VS |
25 | public: |
26 | wxStaticLineXmlHandler(); | |
27 | virtual wxObject *DoCreateResource(); | |
28 | virtual bool CanHandle(wxXmlNode *node); | |
28c0bed3 VS |
29 | }; |
30 | ||
31 | #endif | |
32 | ||
33 | #endif // _WX_XH_STLIN_H_ |