in reply to Re: Exporting functions into main namespace for the benefit of other use'd modules
in thread Exporting functions into main namespace for the benefit of other use'd modules
Looking at that, I'm already wonderinguse strict; use warnings; use Foo; my $app = Foo::App->new(); $app->MainLoop();
Maybe what you really have is an example of a specific derived class that inherits these common functions from a base class.
Or maybe something else entirely.
But I'd be very confused if I had "package My::Package" and then found that there were other subroutines that poofed into my namespace when I hadn't specifically imported them. Argh!
-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.
|
|---|