]>
Commit | Line | Data |
---|---|---|
56d2f750 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Purpose: XML resources editor | |
3 | // Author: Vaclav Slavik | |
4 | // Created: 2000/05/05 | |
5 | // RCS-ID: $Id$ | |
6 | // Copyright: (c) 2000 Vaclav Slavik | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifdef __GNUG__ | |
11 | #pragma interface "xmlhelpr.h" | |
12 | #endif | |
13 | ||
14 | #ifndef _XMLHELPR_H_ | |
15 | #define _XMLHELPR_H_ | |
16 | ||
17 | // some helper functions: | |
18 | ||
19 | void XmlWriteValue(wxXmlNode *parent, const wxString& name, const wxString& value); | |
20 | wxString XmlReadValue(wxXmlNode *parent, const wxString& name); | |
21 | wxXmlNode *XmlFindNode(wxXmlNode *parent, const wxString& name); | |
22 | ||
23 | #endif |