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

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

package Notations.Slurs.MusicXML is

   -- Read slur data from an XML reader.
   function Read_Slur
     (XML : access XML_Reader-- Use this XML reader.
     return Slur_Access;       -- The newly created slur.

   -- Write slur data to an XML writer.
   procedure Write_Slur
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Slur);      -- Write this slur.

end Notations.Slurs.MusicXML;