Help for this page

Select Code to Download


  1. or download this
      sub new {
          my $proto = shift;
          my $self = bless { @_ }, ref($proto) || $proto;
    ...
          my $self = shift;
          ... initialization for the base class ...
      }
    
  2. or download this
      sub initialize {
        my $self = shift;
        # First initialize our inherited aspects
        $self->SUPER::initialize();
        ... initialization specific to the subclass ...
      }