-- $Date: 2004/03/08 11:05:10 $
-- $Revision: 1.2 $
-- $Author: jcrocholl $
-- $Hash: 54c86d7e2ec5196e9e5d7ea7f1e2c3a6 $

-- This file was automatically created with ado.php.
-- Manual changes will be lost when it is updated.

package body Notations.Simple is

   -- Constructor for instances.
   function Create
     (Name : in Simple_Enum-- The initial name.
     return Simple_Access    -- The newly created simple.
   is
      Result : Simple_Access := new Simple;
   begin
      Result.Name := Name;
      return Result;
   end Create;

   -- Accessor to read the name of a simple.
   function Get_Name
     (This : access Simple-- The simple to read from.
     return Simple_Enum is  -- The name of that simple.
   begin
      return This.Name;
   end Get_Name;

end Notations.Simple;