Image::TextMode::Format::PCBoard - read and write PCBoard files


Image-TextMode documentation Contained in the Image-TextMode distribution.

Index


Code Index:

NAME

Top

Image::TextMode::Format::PCBoard - read and write PCBoard files

DESCRIPTION

Top

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@).

METHODS

Top

new( %args )

Creates a PCBoard instance.

extensions( )

Returns 'pcb'.

AUTHOR

Top

Brian Cassidy <bricas@cpan.org>

COPYRIGHT AND LICENSE

Top


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;