<?php
/**
* $Id$
* $Log$
*/
/****************************************************************************************
*
* This class is an abstract off a "data" file, it specialize in RCSFile and SYSFile
*
* Methods:
*
* xFile(String $name, String $type, String $location, Array $attribut)
* Builder of this class
*
***************************************************************************************/
Class xFile extends AbstractFile
{
/**
* 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 xFile($name, $type, $location, $attribut = false)
{
parent::AbstractFile($name, $type, $location, $attribut);
}/* xFile() */
}/*Class xFile*/
?>