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