take out duplicate docs
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer / XML.pm
1 package SQL::Translator::Producer::XML;
2
3 # -------------------------------------------------------------------
4 # Copyright (C) 2002-2009 SQLFairy Authors
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License as
8 # published by the Free Software Foundation; version 2.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 # 02111-1307  USA
19 # -------------------------------------------------------------------
20
21 =pod
22
23 =head1 NAME
24
25 SQL::Translator::Producer::XML - Alias to XML::SQLFairy producer
26
27 =head1 DESCRIPTION
28
29 Previous versions of SQL::Translator included an XML producer, but the
30 namespace has since been further subdivided.  Therefore, this module is
31 now just just an alias to the XML::SQLFairy producer.
32
33 =head1 SEE ALSO
34
35 SQL::Translator::Producer::XML::SQLFairy.
36
37 =head1 AUTHOR
38
39 Ken Youens-Clark E<lt>kclark@cpan.orgE<gt>.
40
41 =cut
42
43 use strict;
44 use vars qw[ $VERSION $DEBUG ];
45 $VERSION = '1.59';
46 $DEBUG = 1 unless defined $DEBUG;
47
48 use SQL::Translator::Producer::XML::SQLFairy;
49
50 *produce = \&SQL::Translator::Producer::XML::SQLFairy::produce;
51
52 1;