Remove Moose::Meta::Object::Trait
[gitmo/Moose.git] / lib / Moose / Meta / Instance.pm
1
2 package Moose::Meta::Instance;
3
4 use strict;
5 use warnings;
6
7 use base "Class::MOP::Instance";
8
9 1;
10
11 # ABSTRACT: The Moose Instance metaclass
12
13 __END__
14
15 =pod
16
17 =head1 SYNOPSIS
18
19     # nothing to see here
20
21 =head1 DESCRIPTION
22
23 This class provides the low level data storage abstractions for
24 attributes.
25
26 Using this API directly in your own code violates encapsulation, and
27 we recommend that you use the appropriate APIs in
28 L<Moose::Meta::Class> and L<Moose::Meta::Attribute> instead. Those
29 APIs in turn call the methods in this class as appropriate.
30
31 At present, this is an empty subclass of L<Class::MOP::Instance>, so
32 you should see that class for all API details.
33
34 =head1 INHERITANCE
35
36 C<Moose::Meta::Instance> is a subclass of L<Class::MOP::Instance>.
37
38 =head1 BUGS
39
40 See L<Moose/BUGS> for details on reporting bugs.
41
42 =cut