//********************************************************************
//  Speaker.java       Author: Lewis and Loftus
//
//  Demonstrates the declaration of an interface.
//********************************************************************

interface Speaker
{
   public void speak ();
   public void announce (String str);
}
