0.01_06, better memory mgmt?
[gitmo/Class-C3-XS.git] / lib / Class / C3 / XS.pm
CommitLineData
8995e827 1package Class::C3::XS;
2
62eb9d08 3our $VERSION = '0.01_06';
8995e827 4
5=pod
6
7=head1 NAME
8
fbe8c8c4 9Class::C3::XS - XS speedups for Class::C3
10
11=head1 SUMMARY
12
13 use Class::C3; # Automatically loads Class::C3::XS
14 # if it's installed locally
8995e827 15
16=head1 DESCRIPTION
17
fbe8c8c4 18This contains XS performance enhancers for L<Class::C3>.
19The main L<Class::C3> package will use this package automatically
20if it can find it. Do not use this package directly, use
21L<Class::C3> instead.
8995e827 22
23=head1 AUTHOR
24
8995e827 25Brandon L. Black, E<lt>blblack@gmail.comE<gt>
26
399aacfc 27=head1 LICENSE
8995e827 28
29This library is free software; you can redistribute it and/or modify
30it under the same terms as Perl itself.
31
32=cut
33
b23e9cb9 34require XSLoader;
35XSLoader::load('Class::C3::XS', $VERSION);
8995e827 36
371;