Corrections.
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer / XML.pm
1 package SQL::Translator::Producer::XML;
2
3 # -------------------------------------------------------------------
4 # $Id: XML.pm,v 1.14 2003-08-21 01:06:52 kycl4rk Exp $
5 # -------------------------------------------------------------------
6 # Copyright (C) 2003 Ken Y. Clark <kclark@cpan.org>.
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
23 =pod
24
25 =head1 NAME
26
27 SQL::Translator::Producer::XML - Alias to XML::SQLFairy producer
28
29 =head1 SYNOPSIS
30
31 Previous versions of SQL::Translator included an XML producer, but the 
32 namespace has since been further subdivided.  Therefore, this module is 
33 now just just an alias to the XML::SQLFairy producer.
34
35 =head1 AUTHOR
36
37 Ken Y. Clark E<lt>kclark@cpan.orgE<gt>.
38
39 =cut
40
41 use strict;
42 use vars qw[ $VERSION $DEBUG ];
43 $VERSION = sprintf "%d.%02d", q$Revision: 1.14 $ =~ /(\d+)\.(\d+)/;
44 $DEBUG = 1 unless defined $DEBUG;
45
46 use SQL::Translator::Producer::XML::SQLFairy;
47
48 *produce = \&SQL::Translator::Producer::XML::SQLFairy::produce;
49
50 1;