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