<?
require_once("LenexBase.class.php");
class LenexPointTable extends LenexBase {
var $name;
var $version;
function LenexPointTable($name,$version) {
$this->name=$name;
$this->version=$version;
}
/*static*/
function fromSAX($attrs) {
$obj =& new LenexPointTable(@$attrs["NAME"],@$attrs["VERSION"]);
return $obj;
}
/*override*/
function setParent(&$obj) {
$obj->setPointTable($this);
}
}
?>