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

   -- Read score instrument data from an XML reader.
   function Read_Score_Instrument
     (XML : access XML_Reader)       -- Use this XML reader.
     return Score_Instrument_Access-- The newly created score instrument.

   -- Write score instrument data to an XML writer.
   procedure Write_Score_Instrument
     (XML  : access XML_Writer;        -- Use this XML writer.
      This : access Score_Instrument); -- Write this score instrument.

end Score_Instruments.MusicXML;