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

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

package Pitches.MusicXML is

   -- Read pitch data from an XML reader.
   function Read_Pitch
     (XML : access XML_Reader-- Use this XML reader.
     return Pitch_Access;      -- The newly created pitch.

   -- Write pitch data to an XML writer.
   procedure Write_Pitch
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Pitch);     -- Write this pitch.

end Pitches.MusicXML;