| Image-TextMode documentation | Contained in the Image-TextMode distribution. |
Image::TextMode::Writer::PCBoard - Writes PCBoard files
Provides writing capabilities for the PCBoard format.
Brian Cassidy <bricas@cpan.org>
Copyright 2008-2011 by Brian Cassidy
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Image-TextMode documentation | Contained in the Image-TextMode distribution. |
package Image::TextMode::Writer::PCBoard; use Moose; extends 'Image::TextMode::Writer'; sub _write { my ( $self, $image, $fh, $options ) = @_; Moose->throw_error( 'Not yet written' ); } no Moose; __PACKAGE__->meta->make_immutable;
1;