Sha256: c97ec75fbf23d28cc0549fffa8b7834ab5bf5e4f8d69a9ea8933601cedaf41dd

Contents?: true

Size: 521 Bytes

Versions: 4

Compression:

Stored size: 521 Bytes

Contents

/* $Id: rxml_xinclude.c 566 2008-11-18 06:53:36Z 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

4 entries across 4 versions & 1 rubygems

Version Path
libxml-ruby-0.9.3-x86-mswin32-60 ext/libxml/ruby_xml_xinclude.c
libxml-ruby-0.9.3 ext/libxml/ruby_xml_xinclude.c
libxml-ruby-0.9.4 ext/libxml/ruby_xml_xinclude.c
libxml-ruby-0.9.4-x86-mswin32-60 ext/libxml/ruby_xml_xinclude.c