Sha256: ad961d33c2d2e64f205abb71c799abf78e96189a8e6a492e05dd1b99d8e78adc
Contents?: true
Size: 750 Bytes
Versions: 3
Compression:
Stored size: 750 Bytes
Contents
/* $Id: ruby_xml_node.h 138 2007-08-29 18:00:35Z 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_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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
libxml-ruby-0.5.1.0 | ext/xml/ruby_xml_node.h |
libxml-ruby-0.5.0 | ext/xml/ruby_xml_node.h |
libxml-ruby-0.5.0.1 | ext/xml/ruby_xml_node.h |