line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package PDF::API2::Outlines; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
1327
|
use base 'PDF::API2::Outline'; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
1037
|
|
4
|
|
|
|
|
|
|
|
5
|
2
|
|
|
2
|
|
18
|
use strict; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
41
|
|
6
|
2
|
|
|
2
|
|
15
|
use warnings; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
76
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = '2.045'; # VERSION |
9
|
|
|
|
|
|
|
|
10
|
2
|
|
|
2
|
|
16
|
use PDF::API2::Basic::PDF::Utils; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
366
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
sub new { |
13
|
3
|
|
|
3
|
1
|
8
|
my ($class, $api) = @_; |
14
|
3
|
|
|
|
|
14
|
my $self = $class->SUPER::new($api); |
15
|
3
|
|
|
|
|
9
|
$self->{'Type'} = PDFName('Outlines'); |
16
|
|
|
|
|
|
|
|
17
|
3
|
|
|
|
|
15
|
return $self; |
18
|
|
|
|
|
|
|
} |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
sub count { |
21
|
11
|
|
|
11
|
1
|
37
|
my $self = shift(); |
22
|
11
|
|
|
|
|
30
|
return abs($self->SUPER::count()); |
23
|
|
|
|
|
|
|
} |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
1; |