foo
[gitmo/Moose.git] / lib / Moose / Compiler.pm
1
2 package Moose::Compiler;
3 use Moose;
4
5 our $VERSION = '0.01';
6
7 has 'engine' => (
8     is       => 'rw', 
9     does     => 'Moose::Compiler::Engine',
10     handles  => [qw(
11         compile_class
12     )],
13     required => 1,     
14 );
15
16 1;
17
18 __END__
19
20 =pod
21
22 =head1 NAME
23
24 Moose::Compiler - The front end for the Moose compiler
25
26 =head1 DESCRIPTION
27
28 =head1 METHODS
29
30 =over 4
31
32 =item B<meta>
33
34 This will return the metaclass associated with the given class.
35
36 =item B<engine>
37
38 =back
39
40 =head1 DELEGATED METHODS
41
42 =over 4
43
44 =item B<compile_class>
45
46 =back
47
48 =head1 BUGS
49
50 All complex software has bugs lurking in it, and this module is no 
51 exception. If you find a bug please either email me, or add the bug
52 to cpan-RT.
53
54 =head1 AUTHOR
55
56 Stevan Little E<lt>stevan@iinteractive.comE<gt>
57
58 =head1 COPYRIGHT AND LICENSE
59
60 Copyright 2006 by Infinity Interactive, Inc.
61
62 L<http://www.iinteractive.com>
63
64 This library is free software; you can redistribute it and/or modify
65 it under the same terms as Perl itself. 
66
67 =cut