The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Class-TransparentFactory

This module is intended for developers who find they need to refactor
code away from one provider of functionality to a factory + set of
API-compatible providers. It's not that factories are very difficult to
write or maintain, but code that uses them tends to be somewhat cluttered.

With Class-TransparentFactory, your user code remains exactly as it was
before you split off to several providers; the original module class
turns into a facade in which class methods are automatically turned into
proxies for the appropriate provider class.


INSTALLATION

To install this module, run the following commands:

    perl Makefile.PL
    make
    make test
    make install


SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the perldoc command.

    perldoc Class::TransparentFactory

You can also look for information at:

    Search CPAN
        http://search.cpan.org/dist/Class-TransparentFactory

    CPAN Request Tracker:
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Class-TransparentFactory

    AnnoCPAN, annotated CPAN documentation:
        http://annocpan.org/dist/Class-TransparentFactory

    CPAN Ratings:
        http://cpanratings.perl.org/d/Class-TransparentFactory

COPYRIGHT AND LICENCE

Copyright (C) 2006 Gaal Yahas

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.