in reply to Re: Adding interface layers
in thread Adding interface layers
Could you give a short demonstration of an API modifying the interface as you described? That's what I'm curious about, and I'm not really sure how to do that.
Also, wrapping my use in an eval, would it be:
$interface="MyInterface"; #demo, could be any of my interface packages eval "use $interface"; die "Interface dead" if $@; #...rest of program here
|
|---|