Converted README to markdown
[rox-filer.git] / ROX-Filer / src / xml.h
blob07beaf68f300dd4dc3359a83f5454595620fc184
1 /*
2 * ROX-Filer, filer for the ROX desktop project
3 * By Thomas Leonard, <tal197@users.sourceforge.net>.
4 */
6 #ifndef __XML_H__
7 #define __XML_H__
9 #include <glib-object.h>
11 typedef struct _XMLwrapperClass XMLwrapperClass;
13 struct _XMLwrapperClass {
14 GObjectClass parent;
17 struct _XMLwrapper {
18 GObject object;
19 xmlDocPtr doc;
22 XMLwrapper *xml_new(const char *pathname);
23 xmlNode *xml_get_section(XMLwrapper *xml, const gchar *ns, const gchar *name);
24 xmlNode *get_subnode(xmlNode *node, const char *namespaceURI, const char *name);
26 #endif /* __XML_H__ */