| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Alien::SWIG4; |
|
2
|
|
|
|
|
|
|
$Alien::SWIG4::VERSION = '0.05'; |
|
3
|
1
|
|
|
1
|
|
290666
|
use strict; |
|
|
1
|
|
|
|
|
13
|
|
|
|
1
|
|
|
|
|
30
|
|
|
4
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
29
|
|
|
5
|
1
|
|
|
1
|
|
9
|
use base qw( Alien::Base ); |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
643
|
|
|
6
|
1
|
|
|
1
|
|
5587
|
use 5.008004; |
|
|
1
|
|
|
|
|
4
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
1; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Alien::SWIG4 - Find or build SWIG v4 C/C++ interface generator |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Command line tool: |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
use Alien::SWIG4; |
|
19
|
|
|
|
|
|
|
use Env qw( @PATH ); |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
unshift @PATH, Alien::SWIG4->bin_dir; |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
This distribution provides SWIG so that it can be used by other |
|
26
|
|
|
|
|
|
|
Perl distributions that are on CPAN. It does this by first trying to |
|
27
|
|
|
|
|
|
|
detect an existing install of SWIG on your system. If found it |
|
28
|
|
|
|
|
|
|
will use that. If it cannot be found, the source code will be downloaded |
|
29
|
|
|
|
|
|
|
from the internet and it will be installed in a private share location |
|
30
|
|
|
|
|
|
|
for the use of other modules. |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=over 4 |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=item L |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
The SWIG interface generator home page. |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=item L |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Documentation on the Alien concept itself. |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=item L |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
The base class for this Alien. |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=item L |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Detailed manual for users of Alien classes. |
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=back |
|
53
|
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=cut |