| Current Path : /home/ataenra/www/ATA/INTRANET/Outils/chantier/lib/pagebase/download/streams/ |
| Current File : /home/ataenra/www/ATA/INTRANET/Outils/chantier/lib/pagebase/download/streams/IDownloadStream.php |
<?php
/**
* Interface a DownloadPage stream object
* @author Nick Korbel <lqqkout13@users.sourceforge.net>
* @version 04-13-06
* @package Interfaces
*
* Copyright (C) 2003 - 2007 phpScheduleIt
* License: GPL, see LICENSE
*/
class IDownloadStream
{
/**
* The action to take to force the download of the file
* @param none
*/
function download() {
die ('Not implemented');
}
/**
* Gets the size of the download
* @param none
* @return this size of the download file in bytes
*/
function getSize() {
die ('Not implemented');
}
}
?>