1 package LWES
::Listener
;
3 #############################################################
4 # Base Class for listeners
5 #############################################################
11 $class = ref ( $class ) || $class;
12 my $self = bless ({}, $class);
13 $self -> {'class_def'} = $class."(".join(",",@_).")";
14 $self -> initialize
(@_);
18 #############################################################
19 # Fill out this method if you need to initialize things
20 #############################################################
23 #############################################################
24 # Fill out this method to do stuff with each event
25 #############################################################