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