in reply to Enumeratng Windows CDROM devices
in thread Generating a windows Device Interface Path in perl? SOLVED!
use Exporter; our @ISA = qw/Exporter/;
Please don't inherit from importer. The Exporter documentation is a little bit misleading at this point. The following line is sufficient:
use Exporter qw(import);
See also Re^2: Exporter. Correct way to override import? and Re^2: Advice on style.
Alexander
|
|---|