in reply to Re: Help with building modules
in thread Help with building modules
sub new { my $class = shift; my $self = {}; # Get message strings from subroutine call $msg = shift; # message text $app = shift; # application label $obj = shift; # object $sev = shift; # severity of message $msgg = shift; # message group $ser = shift; # service id return bless $self, $class; }
The data still goes missing.
Neil Watson
watson-wilson.ca
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Help with building modules
by Fletch (Bishop) on Jan 26, 2006 at 15:20 UTC | |
|
Re^3: Help with building modules
by dorward (Curate) on Jan 26, 2006 at 15:53 UTC |