<?php
/**
* $Id$
* $Log$
*/
/****************************************************************************************
*
* This class handle a file in the current location.
*
* Methods:
*
* SYSFlie(String $name, String $location, Array $attribut)
* Builder of this class
*
***************************************************************************************/
Class SYSFile extends xFile
{
/**
* Builder of this class
* @param $name name of this file
* @param $location location of this file
* @param $type type of this file (sysfile, ou rcsfile)
* @param $attribut status of this file
*/
function SYSFile($name, $location, $attribut = false)
{
parent::xFile($name, "sysfile", $location, $attribut);
// Etat par défaut
if(!$attribut["status"])
$this->_attribut["status"] = "free";
}/* SYSFile() */
}/*Class SYSFile*/
?>