Sha256: 8395f9296c3412b69d300da49c838a4b022b93eccd8f6e1cae91e6c92fe7d42f

Contents?: true

Size: 547 Bytes

Versions: 2

Compression:

Stored size: 547 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

2 entries across 2 versions & 1 rubygems

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