Class LibXML::XML::Dtd
In: ext/libxml/libxml.c
Parent: Object

Methods

new  

Public Class methods

Create a new Dtd from the specified public and system identifiers.

[Source]

/*
 * call-seq:
 *    XML::Dtd.new("public system") -> dtd
 *    XML::Dtd.new("public", "system") -> dtd
 * 
 * Create a new Dtd from the specified public and system
 * identifiers.
 */
VALUE
ruby_xml_dtd_initialize(int argc, VALUE *argv, VALUE class) {

[Validate]