1# See end of file for licencing information
2
3package AppLib;
4
5# This is the parent module for the AppLib Library
6
7use strict;
8#use warnings;
9#use diagnostics;
10
11use UNIVERSAL 'isa';
12use base 'AppLib::Error';
13use File::Spec     ();
14use Class::Autouse ();
15
16# Set the version
17use vars qw{$VERSION};
18BEGIN {
19	$VERSION = 0.6;
20}
21
22# Flag everything below us to load at run-time.
23Class::Autouse->autouse_recursive( 'AppLib' );
24
251;
26
27__END__
28
29# Copyright (C) 2000-2002 Adam Kennedy ( http://ali.as/contact/ )
30#
31# This library is free software; you can redistribute it and/or
32# modify it under the terms of the GNU Lesser General Public
33# License as published by the Free Software Foundation; either
34# version 2.1 of the License, or (at your option) any later version.
35#
36# This library is distributed in the hope that it will be useful,
37# but WITHOUT ANY WARRANTY; without even the implied warranty of
38# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
39# Lesser General Public License for more details.
40#
41# You should have received a copy of the GNU Lesser General Public
42# License along with this library; if not, write to the Free Software
43# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
44#
45# Should you wish to utilise this software under a different licence,
46# please contact the author.
47