Your IP : 216.73.216.65


Current Path : /home/ataenra/www/ATA/INTRANET/Outils/chantier/lib/interfaces/
Upload File :
Current File : /home/ataenra/www/ATA/INTRANET/Outils/chantier/lib/interfaces/IReservationExport.php

<?php
/**
* Interface for exporting a formatted list of reservations
* @author Nick Korbel <lqqkout13@users.sourceforge.net>
* @version 04-19-06
* @package Interfaces
*
* Copyright (C) 2003 - 2007 phpScheduleIt
* License: GPL, see LICENSE
*/

class IReservationExport
{
	var $_reservations;
	var $_formatter;

	function toString() {
		die ('Not implemented');
	}
	
	function getHeader() {
		die ('Not implemented');
	}
	
	function getFooter() {
		die ('Not implemented');
	}
}
?>