Sha256: e2c4a37e4679a2c6a63b296a46ce288baa258e628fd7816796fe262ccbc73aed

Contents?: true

Size: 525 Bytes

Versions: 2

Compression:

Stored size: 525 Bytes

Contents

/* $Id: ruby_xml_xinclude.c 134 2007-08-29 17:30:19Z danj $ */

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

#include "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

2 entries across 2 versions & 1 rubygems

Version Path
libxml-ruby-0.5.2.0 ext/xml/ruby_xml_xinclude.c
libxml-ruby-0.5.0.1 ext/xml/ruby_xml_xinclude.c