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

   -- Read simple data from an XML reader.
   function Read_Simple
     (XML : access XML_Reader-- Use this XML reader.
     return Simple_Access;     -- The newly created simple.

   -- Write simple data to an XML writer.
   procedure Write_Simple
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Simple);    -- Write this simple.

end Notations.Simple.MusicXML;