File: Outlines.pm

package info (click to toggle)
libpdf-api2-perl 2.038-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 20,188 kB
  • sloc: perl: 40,893; makefile: 11
file content (20 lines) | stat: -rw-r--r-- 306 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package PDF::API2::Outlines;

use base 'PDF::API2::Outline';

use strict;
use warnings;

our $VERSION = '2.038'; # VERSION

use PDF::API2::Basic::PDF::Utils;

sub new {
    my ($class, $api) = @_;
    my $self = $class->SUPER::new($api);
    $self->{'Type'} = PDFName('Outlines');

    return $self;
}

1;