b8c76a559c32c9c5799220fe483912dfed47ff57
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / XML.pm
1 package SQL::Translator::Parser::XML;
2
3 =pod
4
5 =head1 NAME
6
7 SQL::Translator::Parser::XML - Alias to XML::SQLFairy parser
8
9 =head1 DESCRIPTION
10
11 This module is an alias to the XML::SQLFairy parser.
12
13 =head1 SEE ALSO
14
15 SQL::Translator::Parser::XML::SQLFairy.
16
17 =head1 AUTHOR
18
19 Ken Y. Clark E<lt>kclark@cpan.orgE<gt>.
20
21 =cut
22
23 # -------------------------------------------------------------------
24
25 use strict;
26 use vars qw[ $VERSION $DEBUG ];
27 $VERSION = '1.59';
28 $DEBUG = 1 unless defined $DEBUG;
29
30 use SQL::Translator::Parser::XML::SQLFairy;
31
32 *parse = \&SQL::Translator::Parser::XML::SQLFairy::parse;
33
34 1;