r1322: Converted MaskedPixmap to GObject.
[rox-filer.git] / ROX-Filer / src / xml.h
blob66a1b74129af216abb41e05a13fa9c2614520e05
1 /*
2 * $Id$
5 * ROX-Filer, filer for the ROX desktop project
6 * By Thomas Leonard, <tal197@users.sourceforge.net>.
7 */
9 #ifndef __XML_H__
10 #define __XML_H__
12 #include <glib-object.h>
14 typedef struct _XMLwrapperClass XMLwrapperClass;
16 struct _XMLwrapperClass {
17 GObjectClass parent;
20 struct _XMLwrapper {
21 GObject object;
22 xmlDocPtr doc;
25 XMLwrapper *xml_new(const char *pathname);
27 #endif /* __XML_H__ */