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

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

package Measures.MusicXML is

   -- Read measure data from an XML reader.
   function Read_Measure
     (XML : access XML_Reader-- Use this XML reader.
     return Measure_Access;    -- The newly created measure.

   -- Write measure data to an XML writer.
   procedure Write_Measure
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Measure);   -- Write this measure.

end Measures.MusicXML;