Commit | Line | Data |
5210e290 |
1 | package SQL::Translator::Parser::XML; |
2 | |
3 | # ------------------------------------------------------------------- |
90075866 |
4 | # $Id: XML.pm,v 1.2 2004-02-09 22:23:40 kycl4rk Exp $ |
5210e290 |
5 | # ------------------------------------------------------------------- |
90075866 |
6 | # Copyright (C) 2002-4 SQLFairy Authors |
5210e290 |
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::Parser::XML - Alias to XML::SQLFairy parser |
28 | |
29 | =head1 DESCRIPTION |
30 | |
31 | This module is an alias to the XML::SQLFairy parser. |
32 | |
33 | =head1 SEE ALSO |
34 | |
35 | SQL::Translator::Parser::XML::SQLFairy. |
36 | |
37 | =head1 AUTHOR |
38 | |
39 | Ken Y. Clark E<lt>kclark@cpan.orgE<gt>. |
40 | |
41 | =cut |
42 | |
43 | # ------------------------------------------------------------------- |
44 | |
45 | use strict; |
46 | use vars qw[ $VERSION $DEBUG ]; |
90075866 |
47 | $VERSION = sprintf "%d.%02d", q$Revision: 1.2 $ =~ /(\d+)\.(\d+)/; |
5210e290 |
48 | $DEBUG = 1 unless defined $DEBUG; |
49 | |
50 | use SQL::Translator::Parser::XML::SQLFairy; |
51 | |
52 | *parse = \&SQL::Translator::Parser::XML::SQLFairy::parse; |
53 | |
54 | 1; |