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

   -- Read barline data from an XML reader.
   function Read_Barline
     (XML : access XML_Reader-- Use this XML reader.
     return Barline_Access;    -- The newly created barline.

   -- Write barline data to an XML writer.
   procedure Write_Barline
     (XML  : access XML_Writer-- Use this XML writer.
      This : access Barline);   -- Write this barline.

end Music.Barlines.MusicXML;