iOutput.php
3c27a3e7
 <?php
 /**
  * Created by IntelliJ IDEA.
  * User: nosko
  * Date: 1/26/13
  * Time: 10:55 PM
  * To change this template use File | Settings | File Templates.
  */
 interface iOutput {
     public function log($message);
     public function display();
e421c421
 
 	public function addMealHeader($restaurant);
 	public function startListing();
 	public function endListing();
 
 	public function addMeal($meal);
 
 	public function emptyRestaurant();
 
 	public function addHeader(Restaurant $restaurant);
3c27a3e7
 }