- or download this
package LikeOOModule;
use base 'MyOOModule';
...
if ($self->mode == OO_THIS) { ... }
elsif ($self->mode == OO_THAT) { ... }
}
- or download this
use base 'MyOOModule';
MyOOModule->import;
- or download this
# this handles 'use base "MyOOModule"'
# which doesn't call 'import'
...
__PACKAGE__->export_to_level($level, $pkg, @EXPORT)
if $pkg;
}