line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Gnuplot::Builder::Wgnuplot; |
2
|
2
|
|
|
2
|
|
24685
|
use strict; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
115
|
|
3
|
2
|
|
|
2
|
|
9
|
use warnings; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
51
|
|
4
|
2
|
|
|
2
|
|
10
|
use Exporter (); |
|
2
|
|
|
|
|
29
|
|
|
2
|
|
|
|
|
41
|
|
5
|
2
|
|
|
2
|
|
943
|
use Gnuplot::Builder 0.11 (); |
|
2
|
|
|
|
|
42742
|
|
|
2
|
|
|
|
|
46
|
|
6
|
2
|
|
|
2
|
|
14
|
use Gnuplot::Builder::Process; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
155
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
sub import { |
9
|
2
|
|
|
2
|
|
18
|
my $class = shift; |
10
|
2
|
|
|
|
|
9
|
@Gnuplot::Builder::Process::COMMAND = qw(gnuplot_builder_tempfile_wrapper wgnuplot -persist); |
11
|
2
|
|
|
|
|
2050
|
Gnuplot::Builder->export_to_level(1, $class, @_); |
12
|
|
|
|
|
|
|
} |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
1; |
16
|
|
|
|
|
|
|
__END__ |