Removed unnecessary backslash-escapes of single quotes, reformatted spacing
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer / Raw.pm
CommitLineData
34fa4956 1package SQL::Translator::Producer::Raw;
2
3# -------------------------------------------------------------------
19ff0e33 4# $Id: Raw.pm,v 1.2 2003-01-29 13:32:44 dlc Exp $
34fa4956 5# -------------------------------------------------------------------
19ff0e33 6# Copyright (C) 2003 Ken Y. Clark <kclark@cpan.org>,
7# darren chamberlain <darren@cpan.org>,
8# Chris Mungall <cjm@fruitfly.org>
34fa4956 9#
10# This program is free software; you can redistribute it and/or
11# modify it under the terms of the GNU General Public License as
12# published by the Free Software Foundation; version 2.
13#
14# This program is distributed in the hope that it will be useful, but
15# WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17# General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program; if not, write to the Free Software
21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22# 02111-1307 USA
23# -------------------------------------------------------------------
24
25=head1 NAME
26
27SQL::Translator::Producer::Raw - Raw output (data structure)
28
29=head1 SYNOPSIS
30
31 use SQL::Translator::Producer::Raw;
32
33=head1 DESCRIPTION
34
35Returns a raw data structure from whatever parser was used.
36
37=cut
38
39use strict;
40use vars qw[ $VERSION ];
19ff0e33 41$VERSION = sprintf "%d.%02d", q$Revision: 1.2 $ =~ /(\d+)\.(\d+)/;
34fa4956 42
43# -------------------------------------------------------------------
44sub produce {
45 my ( $translator, $data ) = @_;
46 return $data;
47}
48
491;
50
51# -------------------------------------------------------------------
52# Something there is that doesn't love a wall.
53# Robert Frost
54# -------------------------------------------------------------------
55
56=pod
57
58=head1 AUTHOR
59
60Ken Y. Clark E<lt>kclark@cpan.orgE<gt>
61
62=cut