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