Sha256: 3ba75346ee471503c3845e3f1c56127e41cbff5e72e9f098a284903045fd946d
Contents?: true
Size: 800 Bytes
Versions: 2
Compression:
Stored size: 800 Bytes
Contents
/* $Id: ruby_xml_node.h 225 2007-12-07 04:58:09Z transami $ */ /* 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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
libxml-ruby-0.5.4 | ext/libxml/ruby_xml_node.h |
libxml-ruby-0.5.3 | ext/libxml/ruby_xml_node.h |