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

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

package Works.MusicXML is

   -- Read work data from an XML reader.
   function Read_Work
     (XML : access XML_Reader-- Use this XML reader.
     return Work_Access;       -- The newly created work.

   -- Write work data to an XML writer.
   procedure Write_Work
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Work);      -- Write this work.

end Works.MusicXML;