docs-n-attr-refactor
[gitmo/Moose.git] / lib / Moose / Meta / Instance.pm
1
2 package Moose::Meta::Instance;
3
4 use strict;
5 use warnings;
6
7 our $VERSION = '0.01';
8
9 use base "Class::MOP::Instance";
10
11 1;
12
13 __END__
14
15 =pod
16
17 =head1 NAME
18
19 Moose::Meta::Instance - The Moose Instance metaclass
20
21 =head1 DESCRIPTION
22
23 This is a stub mostly, but I know I will want to use it later on.
24
25 See the L<Class::MOP::Instance> docs for details on the instance 
26 protocol.
27
28 =head1 BUGS
29
30 All complex software has bugs lurking in it, and this module is no 
31 exception. If you find a bug please either email me, or add the bug
32 to cpan-RT.
33
34 =head1 AUTHOR
35
36 Stevan Little E<lt>stevan@iinteractive.comE<gt>
37
38 Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
39
40 =head1 COPYRIGHT AND LICENSE
41
42 Copyright 2006 by Infinity Interactive, Inc.
43
44 L<http://www.iinteractive.com>
45
46 This library is free software; you can redistribute it and/or modify
47 it under the same terms as Perl itself. 
48
49 =cut