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

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

   -- Write direction type data to an XML writer.
   procedure Write_Dir_Type
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Dir_Type);  -- Write this direction type.

end Dir_Types.MusicXML;