Class::MOP - adding in some basic stuff
[gitmo/Class-MOP.git] / lib / Class / MOP / Method.pm
1
2 package Class::MOP::Method;
3
4 use strict;
5 use warnings;
6
7 our $VERSION = '0.01';
8  
9 1;
10
11 __END__
12
13 =pod
14
15 =head1 NAME 
16
17 Class::MOP::Method - Method Meta Object
18
19 =head1 SYNOPSIS
20
21 =head1 DESCRIPTION
22
23 =head1 AUTHOR
24
25 Stevan Little E<gt>stevan@iinteractive.comE<lt>
26
27 =head1 COPYRIGHT AND LICENSE
28
29 Copyright 2006 by Infinity Interactive, Inc.
30
31 L<http://www.iinteractive.com>
32
33 This library is free software; you can redistribute it and/or modify
34 it under the same terms as Perl itself. 
35
36 =cut