Skip to content

Commit

Permalink
M agpl-generic_handle.ads
Browse files Browse the repository at this point in the history
  • Loading branch information
mosteo committed Jul 4, 2006
1 parent 9dfadc1 commit b1b6908
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions agpl-generic_handle.ads
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ package Agpl.Generic_Handle is

type Object is tagged private;

Null_Object : constant Object;

function Set (This : in Item) return Object;
function "+" (This : in Item) return Object renames Set;
-- Creation
Expand Down Expand Up @@ -79,4 +81,7 @@ private
procedure Adjust (This : in out Object);
procedure Finalize (This : in out Object);

Null_Object : constant Object :=
(Ada.Finalization.Controlled with Data => null);

end Agpl.Generic_Handle;

0 comments on commit b1b6908

Please sign in to comment.