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

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

package Keys.MusicXML is

   -- Read key data from an XML reader.
   function Read_Key
     (XML : access XML_Reader-- Use this XML reader.
     return Key_Access;        -- The newly created key.

   -- Write key data to an XML writer.
   procedure Write_Key
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Key);       -- Write this key.

end Keys.MusicXML;