|
NAMEMouseX::Foreign - Extends non-Mouse classes as well as Mouse classes VERSIONThis document describes MouseX::Foreign version 1.000. SYNOPSIS package MyInt;
use Mouse;
use MouseX::Foreign qw(Math::BigInt);
has name => (
is => 'ro',
isa => 'Str',
);
DESCRIPTIONMouseX::Foreign provides an ability for Mouse classes to extend any classes, including non-Mouse classes, including Moose classes. DEPENDENCIESPerl 5.8.1 or later. BUGSAll complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. ACKNOWLEDGEMENTThis is a Mouse port of MooseX::NonMoose, although the name is different. SEE ALSOMouse Moose MooseX::NonMoose MooseX::Alien AUTHORFuji, Goro (gfx) <gfuji(at)cpan.org> LICENSE AND COPYRIGHTCopyright (c) 2010, Fuji, Goro (gfx). All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|