-- $Date: 2004/02/25 07:12:35 $
-- $Revision: 1.7 $
-- $Author: jcrocholl $

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

package Times.MusicXML is

   -- Read time data from an XML reader.
   function Read_Beats
     (XML    : access XML_Reader-- Use this XML reader.
      Symbol : in Symbol_Enum)    -- The initial symbol.
     return Time_Access;          -- The newly created time.

   -- Write time data to an XML writer.
   procedure Write_Beats
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Time);      -- Write this time.

end Times.MusicXML;