docs for MM::Method::Augmented
[gitmo/Moose.git] / lib / Moose / Meta / Instance.pm
CommitLineData
7aad237e 1
2package Moose::Meta::Instance;
3
4use strict;
5use warnings;
6
4b2189ce 7our $VERSION = '0.72';
75b95414 8$VERSION = eval $VERSION;
d44714be 9our $AUTHORITY = 'cpan:STEVAN';
7aad237e 10
11use base "Class::MOP::Instance";
7aad237e 12
ac1ef2f9 131;
14
15__END__
16
17=pod
18
19=head1 NAME
20
21Moose::Meta::Instance - The Moose Instance metaclass
22
1dc5ef70 23=head1 SYNOPSIS
24
25 # nothing to see here
26
ac1ef2f9 27=head1 DESCRIPTION
28
0191cf39 29This class provides the low level data storage abstractions for
30attributes.
1dc5ef70 31
0191cf39 32Using this API directly in your own code violates encapsulation, and
33we recommend that you use the appropriate APIs in
34L<Moose::Meta::Class> and L<Moose::Meta::Attribute> instead. Those
35APIs in turn call the methods in this class as appropriate.
9e93dd19 36
0191cf39 37At present, this is an empty subclass of L<Class::MOP::Instance>, so
38you should see that class for all API details.
ac1ef2f9 39
40=head1 BUGS
41
42All complex software has bugs lurking in it, and this module is no
43exception. If you find a bug please either email me, or add the bug
44to cpan-RT.
45
46=head1 AUTHOR
47
48Stevan Little E<lt>stevan@iinteractive.comE<gt>
49
98aae381 50Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
51
ac1ef2f9 52=head1 COPYRIGHT AND LICENSE
53
2840a3b2 54Copyright 2006-2009 by Infinity Interactive, Inc.
ac1ef2f9 55
56L<http://www.iinteractive.com>
57
58This library is free software; you can redistribute it and/or modify
0191cf39 59it under the same terms as Perl itself.
7aad237e 60
ac1ef2f9 61=cut