Added copyright notices to top of files.
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser.pm
CommitLineData
16dc9970 1package SQL::Translator::Parser;
2
077ebf34 3# ----------------------------------------------------------------------
4# $Id: Parser.pm,v 1.1.1.1.2.1 2002-03-15 20:13:46 dlc Exp $
5# ----------------------------------------------------------------------
6# Copyright (C) 2002 Ken Y. Clark <kycl4rk@users.sourceforge.net>,
7# darren chamberlain <darren@cpan.org>
16dc9970 8#
077ebf34 9# This program is free software; you can redistribute it and/or
10# modify it under the terms of the GNU General Public License as
11# published by the Free Software Foundation; version 2.
12#
13# This program is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16# General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21# 02111-1307 USA
22# ----------------------------------------------------------------------
16dc9970 23
24use strict;
25use vars qw( $VERSION );
077ebf34 26$VERSION = sprintf "%d.%02d", q$Revision: 1.1.1.1.2.1 $ =~ /(\d+)\.(\d+)/;
16dc9970 27
077ebf34 28sub parse { "" }
16dc9970 29
301;
31
32#-----------------------------------------------------
33# Enough! or Too much.
34# William Blake
35#-----------------------------------------------------
36
37=head1 NAME
38
39SQL::Translator::Parser - base object for parsers
40
16dc9970 41=head1 DESCRIPTION
42
077ebf34 43Parser modules that get invoked by SQL::Translator need to implement
44a single function: B<parse>. This function will be called by the
45SQL::Translator instance as $class::parse($data_as_string). Other
46than that, the classes are free to define any helper functions, or
47use any design pattern internally that make the most sense.
16dc9970 48
49=head1 AUTHOR
50
51Ken Y. Clark, kclark@logsoft.com
52
53=head1 SEE ALSO
54
55perl(1).
56
57=cut