-- $Date: 2004/02/14 06:23:38 $
-- $Revision: 1.4 $
-- $Author: jcrocholl $

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

package Notations.MusicXML is

   -- Read notation data from an XML reader.
   function Read_Notation
     (XML : access XML_Reader-- Use this XML reader.
     return Notation_Access;   -- The newly created notation.

   -- Write notation data to an XML writer.
   procedure Write_Notation
     (XML  : access XML_Writer;          -- Use this XML writer.
      This : access Notation'Class-- Write this notation.
      Arti : in out Boolean);            -- Inside articulations?

end Notations.MusicXML;