in reply to How to write a Mixin without Exporter mess?
Just a note: In recent perl versions (5.8.3 and newer), you don't have to inherit from Exporter any more. Instead, you can import Exporter's import method into your code (use Exporter qw(import);). This way, you don't have all those Exporter methods in your object / mixin.
Could mixin help you?
Alexander
|
|---|