Class/Listener ============== SYNOPSIS use Class::Listener; { package My::Listener; @ISA = qw(Class::Listener); } my $l = My::Listener->new( events => { eventname => sub { } ); $l->Class::Listener::signal( 'eventname', @args ); DESCRIPTION This class has a callback hash. It executes the subs via the signal method. INSTALLATION To install this module type the following: perl Makefile.PL make make test make install COPYRIGHT AND LICENCE Copyright (C) 2003 Murat Uenalan This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.