<?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();
 
    public function addMealHeader($restaurant);
    public function startListing();
    public function endListing();
 
    public function addMeal($meal);
 
    public function emptyRestaurant();
 
    public function addHeader(Restaurant $restaurant);
}