/usr/share/perl5/graphincludes/renderer.pm is in libdeps-perl 0.13-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | # This file is part of the graph-includes package
#
# (c) 2005 Yann Dirson <ydirson@altern.org>
# Distributed under version 2 of the GNU GPL.
package graphincludes::renderer;
use warnings;
use strict;
use Carp qw(croak);
sub set_multipage {
my $self = shift;
my $class = ref $self;
croak "$class does not know yet how to output a multipage graph";
}
sub set_outputformat {
my $self = shift;
my $class = ref $self;
croak "$class does not know yet how to set output format";
}
sub set_outputfile {
my $self = shift;
my $class = ref $self;
croak "$class does not know yet how to set output file";
}
1;
|