Revert my previous changes (rev 1722 reverted back to rev 1721)
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer / XML.pm
CommitLineData
5f56cfe9 1package SQL::Translator::Producer::XML;
2
44659089 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
b1e30bf6 21=pod
22
23=head1 NAME
24
25SQL::Translator::Producer::XML - Alias to XML::SQLFairy producer
26
56435d6f 27=head1 DESCRIPTION
b1e30bf6 28
29Previous versions of SQL::Translator included an XML producer, but the
30namespace has since been further subdivided. Therefore, this module is
31now just just an alias to the XML::SQLFairy producer.
32
56435d6f 33=head1 SEE ALSO
34
35SQL::Translator::Producer::XML::SQLFairy.
36
b1e30bf6 37=head1 AUTHOR
38
f997b9ab 39Ken Youens-Clark E<lt>kclark@cpan.orgE<gt>.
b1e30bf6 40
41=cut
42
56435d6f 43# -------------------------------------------------------------------
44
5f56cfe9 45use strict;
da06ac74 46use vars qw[ $VERSION $DEBUG ];
11ad2df9 47$VERSION = '1.59';
5f56cfe9 48$DEBUG = 1 unless defined $DEBUG;
49
50use SQL::Translator::Producer::XML::SQLFairy;
51
b1e30bf6 52*produce = \&SQL::Translator::Producer::XML::SQLFairy::produce;
5f56cfe9 53
541;