Remove copyright headers from individual scripts
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer / XML.pm
CommitLineData
5f56cfe9 1package SQL::Translator::Producer::XML;
2
b1e30bf6 3=pod
4
5=head1 NAME
6
7SQL::Translator::Producer::XML - Alias to XML::SQLFairy producer
8
56435d6f 9=head1 DESCRIPTION
b1e30bf6 10
11Previous versions of SQL::Translator included an XML producer, but the
12namespace has since been further subdivided. Therefore, this module is
13now just just an alias to the XML::SQLFairy producer.
14
56435d6f 15=head1 SEE ALSO
16
17SQL::Translator::Producer::XML::SQLFairy.
18
b1e30bf6 19=head1 AUTHOR
20
f997b9ab 21Ken Youens-Clark E<lt>kclark@cpan.orgE<gt>.
b1e30bf6 22
23=cut
24
56435d6f 25# -------------------------------------------------------------------
26
5f56cfe9 27use strict;
da06ac74 28use vars qw[ $VERSION $DEBUG ];
11ad2df9 29$VERSION = '1.59';
5f56cfe9 30$DEBUG = 1 unless defined $DEBUG;
31
32use SQL::Translator::Producer::XML::SQLFairy;
33
b1e30bf6 34*produce = \&SQL::Translator::Producer::XML::SQLFairy::produce;
5f56cfe9 35
361;