Sha256: d7afc0d5f3801a9e33b82ef89757069b6aaf4937e116063a9ce8afb878caaa2e

Contents?: true

Size: 776 Bytes

Versions: 3

Compression:

Stored size: 776 Bytes

Contents

/* $Id: ruby_xml_document.h 138 2007-08-29 18:00:35Z danj $ */

/* Please see the LICENSE file for copyright and distribution information */

#ifndef __RUBY_XML_DOCUMENT__
#define __RUBY_XML_DOCUMENT__

extern VALUE cXMLDocument;

typedef struct rxp_document {
  xmlDocPtr doc;   /* Tree/DOM interface */
  int data_type;   /* The data type referenced by *data */
  void *data;      /* Pointer to an external structure of options */
} ruby_xml_document_t;

VALUE ruby_xml_document_filename_get(VALUE self);
VALUE ruby_xml_document_new_native(VALUE class, VALUE xmlver);
VALUE ruby_xml_document_wrap(VALUE class, xmlDocPtr xnode);
void  ruby_xml_document_free(ruby_xml_document_t *rxd);
VALUE ruby_xml_document_root_get(VALUE self);
void  ruby_init_xml_document(void);

#endif

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
libxml-ruby-0.5.0 ext/xml/ruby_xml_document.h
libxml-ruby-0.5.1.0 ext/xml/ruby_xml_document.h
libxml-ruby-0.5.0.1 ext/xml/ruby_xml_document.h