| Image-TextMode documentation | Contained in the Image-TextMode distribution. |
Image::TextMode::Format::PCBoard - read and write PCBoard files
A PCBoard file is very much like an ANSI file. It uses @ as the "escape
sequence marker" and provides some basic variable substitution for items
delimited by @ on either end (e.g. @USER@).
Creates a PCBoard instance.
Returns 'pcb'.
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::Format::PCBoard; use Moose; extends 'Image::TextMode::Format', 'Image::TextMode::Canvas'; sub extensions { return 'pcb' } no Moose; __PACKAGE__->meta->make_immutable;
1;