-- $Date: 2004/01/28 05:01:41 $
-- $Revision: 1.3 $
-- $Author: jcrocholl $

with Enum_Strings; use Enum_Strings;

package body 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.
   is
      Result : Simple_Access := null;
   begin
      return Result;
   end Read_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.
   is
   begin
      Write_Element(XML, To_XML(Get_Name(This)'Img));
   end Write_Simple;

end Notations.Simple.MusicXML;