in reply to Re: OO Perl: Nested classes question
in thread OO Perl: Nested classes question
sub condition { my $self = shift; my $condition = shift or die "missing condition"; $self->{_condition}{$condition} ||= new Condition; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: OO Perl: Nested classes question
by TheMarty (Acolyte) on Sep 11, 2006 at 11:45 UTC |