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