From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
our $VERSION = '3.026'; # VERSION
our $LAST_UPDATE = '3.024'; # manually update whenever code is changed
=head1 NAME
PDF::Builder::Outlines - further Outline handling. Inherits from L<PDF::Builder::Outline>
=cut
sub new {
my ($class, $api) = @_;
my $self = $class->SUPER::new($api);
$self->{'Type'} = PDFName('Outlines');
return $self;
}
sub count {
my $self = shift();
return abs($self->SUPER::count());
}
1;