Sha256: 4b0770d725a8eb10e5ccc960ddf6874b3fdaac95fec7423a12f53429c4d683df

Contents?: true

Size: 523 Bytes

Versions: 6

Compression:

Stored size: 523 Bytes

Contents

/* $Id: ruby_xml_xinclude.c 650 2008-11-30 03:40:22Z cfis $ */

#include "ruby_libxml.h"
#include "ruby_xml_xinclude.h"

VALUE cXMLXInclude;

/*
 * Document-class: LibXML::XML::XInclude
 *
 * The ruby bindings do not currently expose libxml's
 * XInclude fuctionality.
 */

// Rdoc needs to know
#ifdef RDOC_NEVER_DEFINED
mLibXML = rb_define_module("LibXML");
mXML = rb_define_module_under(mLibXML, "XML");
#endif

void ruby_init_xml_xinclude(void)
{
  cXMLXInclude = rb_define_class_under(mXML, "XInclude", rb_cObject);
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
libxml-ruby-0.9.6-x86-mswin32-60 ext/libxml/ruby_xml_xinclude.c
libxml-ruby-0.9.6 ext/libxml/ruby_xml_xinclude.c
libxml-ruby-0.9.7-x86-mswin32-60 ext/libxml/ruby_xml_xinclude.c
libxml-ruby-0.9.7 ext/libxml/ruby_xml_xinclude.c
libxml-ruby-0.9.8 ext/libxml/ruby_xml_xinclude.c
libxml-ruby-0.9.8-x86-mswin32-60 ext/libxml/ruby_xml_xinclude.c