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

   -- Read words data from an XML reader.
   function Read_Words
     (XML : access XML_Reader-- Use this XML reader.
     return Words_Access;      -- The newly created words.

   -- Write words data to an XML writer.
   procedure Write_Words
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Words);     -- Write this words.

end Words.MusicXML;