The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Panotools::Script::Line - Panorama Tools script data

SYNOPSIS

Base class for a line in a panotools script

DESCRIPTION

A line starts with a single letter identifier then a series of namevalue items separated by whitespace

USAGE

  my $line = new Panotools::Script::Line::Foo;
  my $identifier = $line->Identifier;
  $line->Parse ('f a1.0 b2.0 bar3.0');
  my $string = $line->Assemble;
  $line->Set (a => 'something', b => 2);