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