in reply to Creating wrapper over a wrapper
Try
use ABC ();
i.e., don't import the original functions into your PQR namespace, if you're going to define wrapper functions of the same name.
(When writing just "use ABC;" the functions are automatically imported because they are in the @EXPORT array (as opposed to @EXPORT_OK) — see Exporter.)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Creating wrapper over a wrapper
by sunnyagarwal008 (Initiate) on May 06, 2010 at 05:45 UTC | |
by almut (Canon) on May 06, 2010 at 07:27 UTC | |
by sunnyagarwal008 (Initiate) on May 06, 2010 at 09:16 UTC | |
by almut (Canon) on May 06, 2010 at 10:01 UTC | |
by Anonymous Monk on May 06, 2010 at 09:53 UTC |