SVG::Convert::BaseDriver - Base class for SVG::Convert drivers


SVG-Convert documentation Contained in the SVG-Convert distribution.

Index


Code Index:

NAME

Top

SVG::Convert::BaseDriver - Base class for SVG::Convert drivers

VERSION

Top

version 0.02

SYNOPSIS

Top

METHODS

Top

convert_string

convert_file

convert_doc

AUTHOR

Top

Toru Yamaguchi, <zigorou@cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-svg-convert-basedriver@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT & LICENSE

Top


SVG-Convert documentation Contained in the SVG-Convert distribution.
package SVG::Convert::BaseDriver;

use strict;
use warnings;

use base qw(Class::Accessor::Fast);

__PACKAGE__->mk_accessors(qw/parser/);

use Carp::Clan;

our $VERSION = '0.02';

sub convert_string {
    croak('Not implements this method');
}

sub convert_file {
    croak('Not implements this method');
}

sub convert_doc {
    croak('Not implements this method');
}

1; # End of SVG::Convert::BaseDriver