-- $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 Music.Notes.MusicXML is

   -- Read note data from an XML reader.
   function Read_Note
     (XML : access XML_Reader-- Use this XML reader.
     return Note_Access;       -- The newly created note.

   -- Write note data to an XML writer.
   procedure Write_Note
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Note);      -- Write this note.

end Music.Notes.MusicXML;