bump version
[gitmo/Moose.git] / lib / Moose / Meta / Instance.pm
CommitLineData
7aad237e 1
2package Moose::Meta::Instance;
3
4use strict;
5use warnings;
6
6302a7e8 7our $VERSION = '0.73_02';
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
d4b1449e 40=head1 INHERITANCE
41
42C<Moose::Meta::Instance> is a subclass of L<Class::MOP::Instance>.
43
ac1ef2f9 44=head1 BUGS
45
46All complex software has bugs lurking in it, and this module is no
47exception. If you find a bug please either email me, or add the bug
48to cpan-RT.
49
50=head1 AUTHOR
51
52Stevan Little E<lt>stevan@iinteractive.comE<gt>
53
98aae381 54Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
55
ac1ef2f9 56=head1 COPYRIGHT AND LICENSE
57
2840a3b2 58Copyright 2006-2009 by Infinity Interactive, Inc.
ac1ef2f9 59
60L<http://www.iinteractive.com>
61
62This library is free software; you can redistribute it and/or modify
0191cf39 63it under the same terms as Perl itself.
7aad237e 64
ac1ef2f9 65=cut