line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Alien::PLplot; |
2
|
|
|
|
|
|
|
$Alien::PLplot::VERSION = '0.001'; |
3
|
2
|
|
|
2
|
|
700170
|
use strict; |
|
2
|
|
|
|
|
14
|
|
|
2
|
|
|
|
|
70
|
|
4
|
2
|
|
|
2
|
|
17
|
use warnings; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
73
|
|
5
|
2
|
|
|
2
|
|
13
|
use base qw( Alien::Base ); |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
1335
|
|
6
|
2
|
|
|
2
|
|
10801
|
use File::Spec; |
|
2
|
|
|
|
|
8
|
|
|
2
|
|
|
|
|
46
|
|
7
|
2
|
|
|
2
|
|
46
|
use 5.008004; |
|
2
|
|
|
|
|
8
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
sub inline_auto_include { |
10
|
0
|
|
|
0
|
1
|
|
return [ 'plplot.h' ]; |
11
|
|
|
|
|
|
|
} |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=pod |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=encoding UTF-8 |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Alien::PLplot - Alien package for the PLplot plotting library |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 VERSION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
version 0.001 |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 DESCRIPTION |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
This distribution provides PLplot so that it can be used by other |
30
|
|
|
|
|
|
|
Perl distributions that are on CPAN. It does this by first trying to |
31
|
|
|
|
|
|
|
detect an existing install of PLplot on your system. If found it |
32
|
|
|
|
|
|
|
will use that. If it cannot be found, the source code will be downloaded |
33
|
|
|
|
|
|
|
from the internet and it will be installed in a private share location |
34
|
|
|
|
|
|
|
for the use of other modules. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 SEE ALSO |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=over 4 |
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
|
|
|
|
|
|
|
=back |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head1 AUTHOR |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Zakariyya Mughal |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
This software is copyright (c) 2021 by Zakariyya Mughal. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
61
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=cut |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
__END__ |