<?php
/**
 * Created by IntelliJ IDEA.
 * User: nosko
 * Date: 1/26/13
 * Time: 10:53 PM
 * To change this template use File | Settings | File Templates.
 */
 
require_once "iOutput.php";
 
class Output implements iOutput {
    protected $output = "";
 
    public function log($message) {
        $this->output .= $message;
    }
 
    public function display(){}
 
    public function addMealHeader($restaurant)
    {
        // TODO: Implement addHeader() method.
    }
 
    public function startListing()
    {
        // TODO: Implement startListing() method.
    }
 
    public function endListing()
    {
        // TODO: Implement endListing() method.
    }
 
    public function addMeal($meal)
    {
        // TODO: Implement addMeal() method.
    }
 
    public function emptyRestaurant()
    {
        // TODO: Implement empty_restaurant() method.
    }
 
 
    public function addHeader(Restaurant $restaurant)
    {
        // TODO: Implement addHeader() method.
    }
}