Commit | Line | Data |
---|---|---|
b295d113 | 1 | package ByteLoader; |
2 | ||
9426adcd | 3 | use XSLoader (); |
b295d113 | 4 | |
059a8bb7 | 5 | $VERSION = 0.04; |
b295d113 | 6 | |
9426adcd | 7 | XSLoader::load 'ByteLoader', $VERSION; |
b295d113 | 8 | |
9 | # Preloaded methods go here. | |
10 | ||
11 | 1; | |
12 | __END__ | |
13 | ||
14 | =head1 NAME | |
15 | ||
16 | ByteLoader - load byte compiled perl code | |
17 | ||
18 | =head1 SYNOPSIS | |
19 | ||
059a8bb7 | 20 | use ByteLoader 0.04; |
b295d113 | 21 | <byte code> |
22 | ||
059a8bb7 | 23 | use ByteLoader 0.04; |
b295d113 | 24 | <byte code> |
25 | ||
26 | =head1 DESCRIPTION | |
27 | ||
28 | This module is used to load byte compiled perl code. It uses the source | |
29 | filter mechanism to read the byte code and insert it into the compiled | |
30 | code at the appropriate point. | |
31 | ||
32 | =head1 AUTHOR | |
33 | ||
34 | Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others. | |
35 | ||
36 | =head1 SEE ALSO | |
37 | ||
38 | perl(1). | |
39 | ||
40 | =cut |