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

   -- Read direction data from an XML reader.
   function Read_Direction
     (XML : access XML_Reader-- Use this XML reader.
     return Direction_Access;  -- The newly created direction.

   -- Write direction data to an XML writer.
   procedure Write_Direction
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Direction); -- Write this direction.

end Music.Directions.MusicXML;