package LATMOS::Accounts::Bases; use 5.010000; use strict; use warnings; use LATMOS::Accounts::Bases::Objects; our $VERSION = (q$Rev$ =~ /$Rev: (\d+) /)[0]; sub new { my ($class, $type, %options) = @_; my $pclass = ucfirst(lc($type)); eval "require LATMOS::Accounts::Bases::$pclass;"; if ($@) { return } # error message ? return "LATMOS::Accounts::Bases::$pclass"->new(%options); } sub get_object { my ($self, $otype, $id) = @_; return LATMOS::Accounts::Bases::Objects->new($self, $otype, $id); } # Preloaded methods go here. 1; __END__ # Below is stub documentation for your module. You'd better edit it! =head1 NAME LATMOS::Accounts::Bases - Perl extension for blah blah blah =head1 SYNOPSIS use LATMOS::Accounts::Bases; blah blah blah =head1 DESCRIPTION Stub documentation for LATMOS::Accounts, created by h2xs. It looks like the author of the extension was negligent enough to leave the stub unedited. Blah blah blah. =head2 EXPORT None by default. =head1 SEE ALSO Mention other useful documentation such as the documentation of related modules or operating system documentation (such as man pages in UNIX), or any relevant external documentation such as RFCs or standards. If you have a mailing list set up for your module, mention it here. If you have a web site set up for your module, mention it here. =head1 AUTHOR Thauvin Olivier, Eolivier@localdomainE =head1 COPYRIGHT AND LICENSE Copyright (C) 2009 by Thauvin Olivier This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available. =cut