The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

XML::DTD::Parser - Perl module for parsing XML DTDs

SYNOPSIS

  use XML::DTD::Parser;

  my $dp = new XML::DTD::Parser;

DESCRIPTION

  XML::DTD::Parser is a support module for top level parsing of an XML
  DTD. The following methods are provided.
new
 my $dp = new XML::DTD::Parser;

Construct a new XML::DTD::Parser object.

isa

if (XML::DTD::Parser->isa($obj) { ... }

Test object type

parse
 open(FH,'<file.dtd');
 my $rt = '';
 $dp->parse(*FH, $rt);

Parse a DTD file.

SEE ALSO

XML::DTD

AUTHOR

Brendt Wohlberg <wohl@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2004-2006 by Brendt Wohlberg

This library is available under the terms of the GNU General Public License (GPL), described in the GPL file included in this distribution.