get rid of some earlier trash, prepare for putting in the real code
[gitmo/Class-C3-XS.git] / lib / Class / C3 / XS.pm
CommitLineData
8995e827 1
2package Class::C3::XS;
3
4our $VERSION = '0.15';
5
6=pod
7
8=head1 NAME
9
fbe8c8c4 10Class::C3::XS - XS speedups for Class::C3
11
12=head1 SUMMARY
13
14 use Class::C3; # Automatically loads Class::C3::XS
15 # if it's installed locally
8995e827 16
17=head1 DESCRIPTION
18
fbe8c8c4 19This contains XS performance enhancers for L<Class::C3>.
20The main L<Class::C3> package will use this package automatically
21if it can find it. Do not use this package directly, use
22L<Class::C3> instead.
8995e827 23
24=head1 AUTHOR
25
26Stevan Little, E<lt>stevan@iinteractive.comE<gt>
27
28Brandon L. Black, E<lt>blblack@gmail.comE<gt>
29
30=head1 COPYRIGHT AND LICENSE
31
32Copyright 2005, 2006 by Infinity Interactive, Inc.
33
34L<http://www.iinteractive.com>
35
36This library is free software; you can redistribute it and/or modify
37it under the same terms as Perl itself.
38
39=cut
40
fbe8c8c4 41# TODO: put XSLoader stuff here
42# TODO: shut off redef warnings and set Class::C3::calculateMRO = Class::C3::XS::calculateMRO
8995e827 43
441;