in reply to OOP: Plugin Style Development
--Dave.package Foo; use base 'Bar'; my @missing_methods = grep { ! Foo->can($_) } qw(foo bar baz); if (@missing_methods) { die "missing methods: @missing_methods"; } ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: OOP: Plugin Style Development
by lachoy (Parson) on Jul 22, 2002 at 21:30 UTC |