Sha256: 6c8c647da414342dc4f46738f4c53db42ee1573ed37908e7a8cec4e4a62133c3
Contents?: true
Size: 901 Bytes
Versions: 9
Compression:
Stored size: 901 Bytes
Contents
/* $Id: ruby_xml_node.h,v 1.1 2006/02/21 20:40:16 roscopeco Exp $ */ /* 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; VALUE xd; int is_ptr; } ruby_xml_node; 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_new(VALUE class, xmlNodePtr node); VALUE ruby_xml_node_new2(VALUE class, VALUE xd, xmlNodePtr node); 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); VALUE ruby_xml_node_set_ptr(VALUE node, int is_ptr); #endif
Version data entries
9 entries across 9 versions & 2 rubygems