<?php

require_once("Product.class.php");

/**
 *
 * Class Shirt
 * 
 *
 * @author Michael Haussmann
 * 
 */
class Shirt extends Product {

    
//var $id;
    
var $size;
    var 
$color;

    
/** 
     * Public contructor
     */
    
function Shirt(){}

}
?>