File: renderer.pm

package info (click to toggle)
deps 0.13-4.4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 260 kB
  • sloc: perl: 1,464; xml: 1,127; makefile: 4
file content (34 lines) | stat: -rw-r--r-- 627 bytes parent folder | download | duplicates (8)
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;