-- $Date: 2004/01/28 05:01:09 $
-- $Revision: 1.6 $
-- $Author: jcrocholl $

with XML_Readers; use XML_Readers;
with XML_Writers; use XML_Writers;

package Clefs.MusicXML is

   -- Read clef data from an XML reader.
   function Read_Clef
     (XML : access XML_Reader-- Use this XML reader.
     return Clef_Access;       -- The newly created clef.

   -- Write clef data to an XML writer.
   procedure Write_Clef
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Clef);      -- Write this clef.

end Clefs.MusicXML;