ModuleBundle - Combine several other modules into one package


NAME

ModuleBundle - Combine several other modules into one package


SYNOPSIS

Create a package that looks like this:

        package XYZ;
        use X;
        use Y;
        use Z;
        use ModuleBundle;
        @ISA = 'ModuleBundle;
        1;

Now if you say

        use XYZ;

that is the same as saying

        use X;
        use Y;
        use Z;


DESCRIPTION

See the SYNOPSIS.


AUTHOR

Mark-Jason Dominus (mjd-perl-bundle@plover.com)

 ModuleBundle - Combine several other modules into one package