| SVG-Convert documentation | Contained in the SVG-Convert distribution. |
SVG::Convert::BaseDriver - Base class for SVG::Convert drivers
version 0.02
Toru Yamaguchi, <zigorou@cpan.org>
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 2007 Toru Yamaguchi, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 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