Revert my previous changes (rev 1722 reverted back to rev 1721)
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / XML.pm
CommitLineData
5210e290 1package SQL::Translator::Parser::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
5210e290 21=pod
22
23=head1 NAME
24
25SQL::Translator::Parser::XML - Alias to XML::SQLFairy parser
26
27=head1 DESCRIPTION
28
29This module is an alias to the XML::SQLFairy parser.
30
31=head1 SEE ALSO
32
33SQL::Translator::Parser::XML::SQLFairy.
34
35=head1 AUTHOR
36
11ad2df9 37Ken Y. Clark E<lt>kclark@cpan.orgE<gt>.
5210e290 38
39=cut
40
41# -------------------------------------------------------------------
42
43use strict;
da06ac74 44use vars qw[ $VERSION $DEBUG ];
11ad2df9 45$VERSION = '1.59';
5210e290 46$DEBUG = 1 unless defined $DEBUG;
47
48use SQL::Translator::Parser::XML::SQLFairy;
49
50*parse = \&SQL::Translator::Parser::XML::SQLFairy::parse;
51
521;