added width and height options for graphviz out. no docs
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer / Raw.pm
1 package SQL::Translator::Producer::Raw;
2
3 # -------------------------------------------------------------------
4 # $Id: Raw.pm,v 1.2 2003-01-29 13:32:44 dlc Exp $
5 # -------------------------------------------------------------------
6 # Copyright (C) 2003 Ken Y. Clark <kclark@cpan.org>,
7 #                    darren chamberlain <darren@cpan.org>,
8 #                    Chris Mungall <cjm@fruitfly.org>
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
27 SQL::Translator::Producer::Raw - Raw output (data structure)
28
29 =head1 SYNOPSIS
30
31   use SQL::Translator::Producer::Raw;
32
33 =head1 DESCRIPTION
34
35 Returns a raw data structure from whatever parser was used.
36
37 =cut
38
39 use strict;
40 use vars qw[ $VERSION ];
41 $VERSION = sprintf "%d.%02d", q$Revision: 1.2 $ =~ /(\d+)\.(\d+)/;
42
43 # -------------------------------------------------------------------
44 sub produce {
45     my ( $translator, $data ) = @_;
46     return $data;
47 }
48
49 1;
50
51 # -------------------------------------------------------------------
52 # Something there is that doesn't love a wall.
53 # Robert Frost
54 # -------------------------------------------------------------------
55
56 =pod
57
58 =head1 AUTHOR
59
60 Ken Y. Clark E<lt>kclark@cpan.orgE<gt>
61
62 =cut