Help for this page

Select Code to Download


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