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

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

package body Dir_Types is

   -- Constructor for instances.
   function Create
     return Dir_Type_Access -- The newly created dir type.
   is
      Result : Dir_Type_Access := new Dir_Type;
   begin
      return Result;
   end Create;

   -- Mutator to update the words of a dir type.
   procedure Set_Words
     (This  : access Dir_Type;    -- The dir type to be updated.
      Words : in Words_Access) is -- The new words of that dir type.
   begin
      This.Words := Words;
   end Set_Words;

   -- Accessor to read the words of a dir type.
   function Get_Words
     (This : access Dir_Type-- The dir type to read from.
     return Words_Access is   -- The words of that dir type.
   begin
      return This.Words;
   end Get_Words;

end Dir_Types;