-- $Date: 2004/02/14 06:22:42 $
-- $Revision: 1.3 $
-- $Author: jcrocholl $

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

package Notations.Articulations.MusicXML is

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

   -- Write articulation data to an XML writer.
   procedure Write_Articulation
     (XML  : access XML_Writer;    -- Use this XML writer.
      This : access Articulation); -- Write this articulation.

end Notations.Articulations.MusicXML;