Help for this page

Select Code to Download


  1. or download this
                    MotherClass
                      /   \
                     /     \
                    /       \
            ChildClass1   ChildClass2
    
  2. or download this
    package MotherClass::ChildClass1;
    
    ...
       my $self = $class->SUPER::new($args);
       ...
    }
    
  3. or download this
    package MotherClass::ChildClass2;
    
    ...
    ...
    
    sub object_method { MotherClass::ChildClass1::object_method(@_) }