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

   -- Read midi instrument data from an XML reader.
   function Read_Midi_Instrument
     (XML : access XML_Reader)      -- Use this XML reader.
     return Midi_Instrument_Access-- The newly created midi instrument.

   -- Write midi instrument data to an XML writer.
   procedure Write_Midi_Instrument
     (XML  : access XML_Writer;       -- Use this XML writer.
      This : access Midi_Instrument); -- Write this midi instrument.

end Midi_Instruments.MusicXML;