Sha256: d26083013288079a0bb497cecc22b51f343a6939223b4803133efb679bca658e

Contents?: true

Size: 550 Bytes

Versions: 4

Compression:

Stored size: 550 Bytes

Contents

/* $Id: ruby_xml_xinclude.c 300 2008-07-01 19:14:15Z cfis $ */

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

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

VALUE cXMLXInclude;
VALUE eXMLXIncludeError;

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

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

Version data entries

4 entries across 4 versions & 1 rubygems

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