|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: B T
Length: 763 (0x2fb)
Types: TextFile
Names: »B«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
└─⟦129cab021⟧ »DATA«
└─⟦this⟧
with Unchecked_Deallocation;
package body Root is
procedure Free is new Unchecked_Deallocation (State, Object);
function Create (Offspring : Natural) return Object is
This_Object : Object;
begin
This_Object := new State;
This_Object.Offspring := Offspring;
This_Object.Heir := This_Object;
return This_Object;
end Create;
procedure Delete (This_Object : in out Object) is
begin
Free (This_Object);
end Delete;
procedure Set_Heir (This_Object : in out Object; Heir : Object) is
begin
This_Object.Heir := Heir;
end Set_Heir;
function Get_Heir (This_Object : Object) return Object is
begin
return This_Object.Heir;
end Get_Heir;
end Root;