X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FSQL%2FTranslator.pm;h=4169faf31ffbd26fc9d8b9827af8e2039d3289af;hb=0c04c5a2210135419771878dc7e341a1cba52cca;hp=988722d792e62abd9348f18635688839ce4b7bdc;hpb=282bf498899061be19ec7fd7ce16bf25a562fdcf;p=dbsrgits%2FSQL-Translator.git diff --git a/lib/SQL/Translator.pm b/lib/SQL/Translator.pm index 988722d..4169faf 100644 --- a/lib/SQL/Translator.pm +++ b/lib/SQL/Translator.pm @@ -1,30 +1,13 @@ package SQL::Translator; -# ---------------------------------------------------------------------- -# Copyright (C) 2002-2009 The SQLFairy Authors -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; version 2. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA -# 02111-1307 USA -# ------------------------------------------------------------------- - use strict; -use vars qw( $VERSION $DEFAULT_SUB $DEBUG $ERROR ); +use warnings; +our ( $DEFAULT_SUB, $DEBUG, $ERROR ); use base 'Class::Base'; require 5.005; -$VERSION = '0.11010'; +our $VERSION = '0.11010'; $DEBUG = 0 unless defined $DEBUG; $ERROR = "";