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

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

package Scores.MusicXML is

   -- Read score data from an XML reader.
   function Read_Score
     (XML : access XML_Reader-- Use this XML reader.
     return Score_Access;      -- The newly created score.

   -- Write a partwise score to an XML writer.
   procedure Write_Score_Partwise
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Score);     -- Write this score.

   -- Write a partwise score to an XML writer.
   procedure Write_Score_Timewise
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Score);     -- Write this score.

end Scores.MusicXML;