parent
parent
- NAME
- SYNOPSIS
- DESCRIPTION
- DIAGNOSTICS
- HISTORY
- CAVEATS
- SEE ALSO
- AUTHORS AND CONTRIBUTORS
- MAINTAINER
- LICENSE
NAME
parent - Establish an ISA relationship with base classes at compile time
SYNOPSIS
package Baz; use parent qw(Foo Bar);
DESCRIPTION
Allows you to both load one or more modules, while setting up inheritance from those modules at the same time. Mostly similar in effect to
package Baz; BEGIN { require Foo; require Bar