1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
/* $Id: ruby_xml_node.h 189 2007-09-26 15:04:47Z danj $ */
/* Please see the LICENSE file for copyright and distribution information */
#ifndef __RUBY_XML_NODE__
#define __RUBY_XML_NODE__
extern VALUE cXMLNode;
extern VALUE eXMLNodeSetNamespace;
extern VALUE eXMLNodeFailedModify;
extern VALUE eXMLNodeUnknownType;
typedef struct ruby_xml_node {
xmlNodePtr node;
} ruby_xml_node;
VALUE
ruby_xml_node2_wrap(VALUE class, xmlNodePtr xnode);
void ruby_xml_node_free(ruby_xml_node *rxn);
void ruby_xml_node_mark_common(xmlNodePtr n);
void ruby_init_xml_node(void);
VALUE ruby_xml_node_child_set(VALUE self, VALUE obj);
VALUE ruby_xml_node_name_get(VALUE self);
VALUE ruby_xml_node_property_get(VALUE self, VALUE key);
VALUE ruby_xml_node_property_set(VALUE self, VALUE key, VALUE val);
#endif
|