1*0Sstevel@tonic-gatepackage ByteLoader;
2*0Sstevel@tonic-gate
3*0Sstevel@tonic-gateuse XSLoader ();
4*0Sstevel@tonic-gate
5*0Sstevel@tonic-gateour $VERSION = '0.05';
6*0Sstevel@tonic-gate
7*0Sstevel@tonic-gateXSLoader::load 'ByteLoader', $VERSION;
8*0Sstevel@tonic-gate
9*0Sstevel@tonic-gate1;
10*0Sstevel@tonic-gate__END__
11*0Sstevel@tonic-gate
12*0Sstevel@tonic-gate=head1 NAME
13*0Sstevel@tonic-gate
14*0Sstevel@tonic-gateByteLoader - load byte compiled perl code
15*0Sstevel@tonic-gate
16*0Sstevel@tonic-gate=head1 SYNOPSIS
17*0Sstevel@tonic-gate
18*0Sstevel@tonic-gate  use ByteLoader 0.04;
19*0Sstevel@tonic-gate  <byte code>
20*0Sstevel@tonic-gate
21*0Sstevel@tonic-gate  or just
22*0Sstevel@tonic-gate
23*0Sstevel@tonic-gate  perl -MByteLoader bytecode_file
24*0Sstevel@tonic-gate
25*0Sstevel@tonic-gate=head1 DESCRIPTION
26*0Sstevel@tonic-gate
27*0Sstevel@tonic-gateThis module is used to load byte compiled perl code as produced by
28*0Sstevel@tonic-gateC<perl -MO=Bytecode=...>. It uses the source filter mechanism to read
29*0Sstevel@tonic-gatethe byte code and insert it into the compiled code at the appropriate point.
30*0Sstevel@tonic-gate
31*0Sstevel@tonic-gate=head1 AUTHOR
32*0Sstevel@tonic-gate
33*0Sstevel@tonic-gateTom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
34*0Sstevel@tonic-gateMany changes by Enache Adrian <enache@rdslink.ro> 2003 a.d.
35*0Sstevel@tonic-gate
36*0Sstevel@tonic-gate=head1 SEE ALSO
37*0Sstevel@tonic-gate
38*0Sstevel@tonic-gateperl(1).
39*0Sstevel@tonic-gate
40*0Sstevel@tonic-gate=cut
41