in reply to Plugin based Perl app
That way routines will be looked for first in the local package then they will be looked for in the packages named in @ISA. The plugin package might provide routines to set the subroutine references etc.use plugin; push(@ISA, "plugin");
|
|---|