Hosted by
|
with Words; use Words;
package Dir_Types is
type Dir_Type is limited private;
type Dir_Type_Access is access all Dir_Type;
function Create
return Dir_Type_Access;
procedure Set_Words
(This : access Dir_Type;
Words : in Words_Access);
function Get_Words
(This : access Dir_Type)
return Words_Access;
private
type Dir_Type is limited record
Words : Words_Access;
end record;
end Dir_Types;
|