-- $Date: 2004/01/20 03:51:46 $
-- $Revision: 1.12 $
-- $Author: jcrocholl $

with Scores; use Scores;

package MusicXML is

   ----------
   -- Reading
   ----------

   -- Read a score from current input (stdin).
   function Read
     return Score_Access-- The newly created score.

   -- Read a score from a MusicXML file.
   function Read_File
     (Filename : in String-- Read from this file.
     return Score_Access;   -- The newly created score.

   ----------
   -- Writing
   ----------

   -- Write a score to current output (stdout).
   procedure Write
     (This : access Score); -- Write this score.

   -- Write a score to a MusicXML file.
   procedure Write_File
     (This     : access Score-- Write this score.
      Filename : in String);   -- Write to this file.

end MusicXML;