2 package Moose::Meta::Instance;
7 our $VERSION = '1.9900';
8 $VERSION = eval $VERSION;
9 our $AUTHORITY = 'cpan:STEVAN';
11 use Class::MOP::MiniTrait;
13 use base "Class::MOP::Instance";
15 Class::MOP::MiniTrait::apply(__PACKAGE__, 'Moose::Meta::Object::Trait');
25 Moose::Meta::Instance - The Moose Instance metaclass
33 This class provides the low level data storage abstractions for
36 Using this API directly in your own code violates encapsulation, and
37 we recommend that you use the appropriate APIs in
38 L<Moose::Meta::Class> and L<Moose::Meta::Attribute> instead. Those
39 APIs in turn call the methods in this class as appropriate.
41 At present, this is an empty subclass of L<Class::MOP::Instance>, so
42 you should see that class for all API details.
46 C<Moose::Meta::Instance> is a subclass of L<Class::MOP::Instance>.
50 See L<Moose/BUGS> for details on reporting bugs.
54 Stevan Little E<lt>stevan@iinteractive.comE<gt>
56 Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
58 =head1 COPYRIGHT AND LICENSE
60 Copyright 2006-2010 by Infinity Interactive, Inc.
62 L<http://www.iinteractive.com>
64 This library is free software; you can redistribute it and/or modify
65 it under the same terms as Perl itself.