diff options
author | ivan <ivan> | 2002-01-10 16:11:20 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-01-10 16:11:20 +0000 |
commit | 8cb39114b5aa93a59c0cfbbb4b231674c0540003 (patch) | |
tree | 5aca07674e80f1c3ff6d32f9b43f57134be8ad83 /test.pl |
Diffstat (limited to 'test.pl')
-rwxr-xr-x | test.pl | 32 |
1 files changed, 32 insertions, 0 deletions
@@ -0,0 +1,32 @@ +#!/usr/bin/perl +#============================================================================== +#=== This is a toplevel script +#============================================================================== +require 5.000; use strict 'vars', 'refs', 'subs'; + +package window1; + +BEGIN { + use lib "./"; + use src::gtkdbi; + use vars qw(@ISA); +# use Carp qw(cluck); +# $SIG{__DIE__} = &Carp::confess; +# $SIG{__WARN__} = &Carp::cluck; +} + +$Glade::PerlRun::pixmaps_directory = "/home/ivan/gtkdbi/pixmaps"; + +select STDOUT; $| = 1; + +my %params = ( +); + +__PACKAGE__->app_run(%params) && exit 0; + +exit 1; + +1; + +__END__ +} |