1946275dabc70813baf81318536083788c897c21
[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 =head1 METHODS
24
25 =head1 BUGS
26
27 All complex software has bugs lurking in it, and this module is no 
28 exception. If you find a bug please either email me, or add the bug
29 to cpan-RT.
30
31 =head1 AUTHOR
32
33 Stevan Little E<lt>stevan@iinteractive.comE<gt>
34
35 =head1 COPYRIGHT AND LICENSE
36
37 Copyright 2006 by Infinity Interactive, Inc.
38
39 L<http://www.iinteractive.com>
40
41 This library is free software; you can redistribute it and/or modify
42 it under the same terms as Perl itself. 
43
44 =cut