Configuration 4 GNU (CFG)
|
|
XMLFileNode | |
NameXMLFileNode -- A base type for all nodes that reference an external XML document. Properties
"xmldoc" gpointer : Read / Write |
DetailsXMLFILENODE()#define XMLFILENODE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), xmlfilenode_get_type(), XMLFileNode)) |
XMLFILENODE_CLASS()#define XMLFILENODE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), xmlfilenode_get_type(), XMLFileNodeClass)) |
IS_XMLFILENODE()#define IS_XMLFILENODE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), xmlfilenode_get_type())) |
IS_XMLFILENODE_CLASS()#define IS_XMLFILENODE_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((klass), xmlfilenode_get_type())) |
XMLFILENODE_GET_CLASS()#define XMLFILENODE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), xmlfilenode_get_type(), XMLFileNodeClass)) |
xmlfilenode_get_type ()GType xmlfilenode_get_type (void); |
Registers the XMLFileNode class if necessary. xmlfilenode_new_from_file ()XMLFileNode* xmlfilenode_new_from_file (gchar const *filename); |
Loads an XML document from a file and creates an XMLFileNode for
the XML document. Properties- "xmldoc" (gpointer : Read / Write)
A pointer of type xmlDocPtr that specifies the location of an XML
tree that this node represents. Children elements in the XML
document are represented as nodes.
| |
|
|