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

   -- Read encoding data from an XML reader.
   function Read_Encoding
     (XML : access XML_Reader-- Use this XML reader.
     return Encoding_Access;   -- The newly created encoding.

   -- Write encoding data to an XML writer.
   procedure Write_Encoding
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Encoding);  -- Write this encoding.

end Encodings.MusicXML;