//********************************************************************
//  Pizza.java       Author: Lewis and Loftus
//
//  Demonstrates indirect referencing through inheritance.
//********************************************************************

class Pizza extends FoodItem
{
   //-----------------------------------------------------------------
   //  Sets up a pizza with the specified amount of fat; assumes
   //  eight servings.
   //-----------------------------------------------------------------
   public Pizza (int fatGrams)
   {
      super (fatGrams, 8);
   }
}
