File: BaseClass.pm

package info (click to toggle)
libxml-libxslt-perl 2.003000-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 704 kB
  • sloc: xml: 2,181; perl: 1,227; ansic: 402; makefile: 24
file content (37 lines) | stat: -rw-r--r-- 484 bytes parent folder | download | duplicates (7)
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
35
36
37
# base class.

package Driver::BaseClass;

use strict;
use warnings;

use Carp;

sub init {
    my %options = @_;
}

sub chdir {
    my ($dir) = @_;
    chdir($dir);
}

sub load_stylesheet {
    my ($filename) = @_;
    croak("load_stylesheet(filename) unimplemented");
}

sub load_input {
    my ($filename) = @_;
    croak("load_input(filename) unimplemented");
}

sub run_transform {
    my ($output) = @_;
    croak("run_transform(output) unimplemented");
}

sub shutdown {
}

1;