File: Writer.pm

package info (click to toggle)
libvcp-perl 0.9-20050110-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,608 kB
  • ctags: 827
  • sloc: perl: 18,194; makefile: 42; sh: 11
file content (42 lines) | stat: -rw-r--r-- 744 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package RevML::Writer ;

=head1 NAME

RevML::Writer - Write RevML files using the RevML DTD

=head1 SYNOPSIS

   use RevML::Doctype::v1_1 ;
   use RevML::Writer ;

=head1 DESCRIPTION

This class provides facilities to write out the tags and content of
RevML documents.  See XML::AutoWriter for all the details on this
writer's API.

=cut


use strict ;
use vars qw( $VERSION ) ;

use base qw( XML::AutoWriter ) ;

$VERSION = 0.1 ;

=head1 AUTHOR

Barrie Slaymaker <barries@slaysys.com>

=head1 COPYRIGHT

Copyright 2000, Perforce Software, Inc.  All Rights Reserved.

This module and the VCP package are licensed according to the terms given in
the file LICENSE accompanying this distribution, a copy of which is included in
L<vcp>.

=cut

1 ;