| XML-DTD documentation | view source | Contained in the XML-DTD distribution. |
XML::DTD::Include - Perl module representing an include section in a DTD
use XML::DTD::Include;
my $inc = XML::DTD::Include->new('<![ INCLUDE [');
$inc->parse($fh, $rt);
XML::DTD::Include is a Perl module representing an include section in a DTD. The following methods are provided.
my $inc = XML::DTD::Include->new('<![ INCLUDE [');
$inc->parse($fh, $rt);
Construct a new XML::DTD::Include object.
open(FH,'>file.xml'); $inc->fwrite(*FH);
Write the include section to the specified file handle.
$inc->swrite;
Return the include section as a string.
$xo = new XML::Output({'fh' => *STDOUT});
$inc->writexml($xo);
Write an XML representation of the include section.
Brendt Wohlberg <wohl@cpan.org>
Copyright (C) 2004-2010 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.
| XML-DTD documentation | view source | Contained in the XML-DTD distribution. |