in reply to Re^2: autoloading tie routines
in thread autoloading tie routines
This works in preloaded form, but it seems it can't be autoloaded.# Preloaded methods go here. sub IPC::MM::Scalar::TIESCALAR { my $class = shift; my ($val) = @_; return bless \$val, $class; }
and one can have other headers that vary these names. But I don't know of any comparable structure on the .pm side. Assuming that I want to keep the inherited naming structure, what can I do in the .pm file (files?) to straighten out this mess?MODULE = IPC::MMA PACKAGE = IPC::MMA
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: autoloading tie routines
by ysth (Canon) on Feb 03, 2009 at 01:21 UTC |