|
Class::Mixin - API for aliasing methods to/from other classes |
Class::Mixin - API for aliasing methods to/from other classes
To install this module type the following:
Blah
package Company::Subsystem::Enrollment::User::Student; use Company::User ();
use Class::Mixin to=> 'Foo::Bar';
Method used when loading class to import symbols or perform some function. In this case we take the calling classes methods and map them into the class passed in as a parameter.
This modules uses a destructor for un-mixing methods. This is done in the case that this module is unloaded for some reason. It will return modules to their original states.
Function used to process registered 'mixins'. Typically automatically called once immediately after program compilation. Sometimes though you may want to call it manually if a modules is reloaded.
Copyright (C) 2003 Stathy G. Touloumis
This is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|
Class::Mixin - API for aliasing methods to/from other classes |