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