<?php
// $Id: class.FixedFormEntry.php,v 1.1 2003/08/09 06:11:17 rufustfirefly Exp $
// $Author: rufustfirefly $
class FixedFormEntry {
// Internal variables
var $row;
var $col;
var $len;
var $data;
var $format;
var $comment;
// constructor FixedFormEntry
function FixedFormEntry ($row, $col, $len, $data, $format, $comment) {
$this->row = $row;
$this->col = $col;
$this->len = $len;
$this->data = stripslashes($data);
$this->format = $format;
$this->comment = $comment;
} // end constructor FixedFormEntry
} // end class FixedFormEntry
?>