1b4efcd3b6f4a56e8dc835726fed7b93407d1c73
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / XML.pm
1 package SQL::Translator::Parser::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::Parser::XML - Alias to XML::SQLFairy parser
26
27 =head1 DESCRIPTION
28
29 This module is an alias to the XML::SQLFairy parser.
30
31 =head1 SEE ALSO
32
33 SQL::Translator::Parser::XML::SQLFairy.
34
35 =head1 AUTHOR
36
37 Ken Y. Clark E<lt>kclark@cpan.orgE<gt>.
38
39 =cut
40
41 # -------------------------------------------------------------------
42
43 use strict;
44 use vars qw[ $VERSION $DEBUG ];
45 $VERSION = '1.99';
46 $DEBUG = 1 unless defined $DEBUG;
47
48 use SQL::Translator::Parser::XML::SQLFairy;
49
50 *parse = \&SQL::Translator::Parser::XML::SQLFairy::parse;
51
52 1;