1N/Apackage ByteLoader;
1N/A
1N/Ause XSLoader ();
1N/A
1N/Aour $VERSION = '0.05';
1N/A
1N/AXSLoader::load 'ByteLoader', $VERSION;
1N/A
1N/A1;
1N/A__END__
1N/A
1N/A=head1 NAME
1N/A
1N/AByteLoader - load byte compiled perl code
1N/A
1N/A=head1 SYNOPSIS
1N/A
1N/A use ByteLoader 0.04;
1N/A <byte code>
1N/A
1N/A or just
1N/A
1N/A perl -MByteLoader bytecode_file
1N/A
1N/A=head1 DESCRIPTION
1N/A
1N/AThis module is used to load byte compiled perl code as produced by
1N/AC<perl -MO=Bytecode=...>. It uses the source filter mechanism to read
1N/Athe byte code and insert it into the compiled code at the appropriate point.
1N/A
1N/A=head1 AUTHOR
1N/A
1N/ATom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
1N/AMany changes by Enache Adrian <enache@rdslink.ro> 2003 a.d.
1N/A
1N/A=head1 SEE ALSO
1N/A
1N/Aperl(1).
1N/A
1N/A=cut