-- $Date: 2004/02/14 06:12:43 $
-- $Revision: 1.1 $
-- $Author: jcrocholl $

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

package Identifications.MusicXML is

   -- Read identification data from an XML reader.
   function Read_Identification
     (XML : access XML_Reader)     -- Use this XML reader.
     return Identification_Access-- The newly created identification.

   -- Write identification data to an XML writer.
   procedure Write_Identification
     (XML  : access XML_Writer;      -- Use this XML writer.
      This : access Identification); -- Write this identification.

end Identifications.MusicXML;