-- $Date: 2004/03/08 11:05:10 $
-- $Revision: 1.6 $
-- $Author: jcrocholl $
-- $Hash: 7e765c83ca6377a3198787f80805e3c2 $

-- This file was automatically created with ado.php.
-- Manual changes will be lost when it is updated.

package Music is

   -- Public representation.
   type Music_Data is tagged limited private;

   -- Pointer to representation data.
   type Music_Data_Access is access all Music_Data'Class;

   -- Constructor for instances.
   function Create
     return Music_Data_Access-- The newly created music data.

private

   -- Private representation.
   type Music_Data is tagged limited null record;

end Music;