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 - downloadIndex: ┃ T V ┃
Length: 847 (0x34f) Types: TextFile Names: »V«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦this⟧
with Root; package Vegetable is type State is private; type State_Ptr is private; function Create (Offspring : Natural) return Root.Object; procedure Delete (This_Object : in out Root.Object); procedure Set_Y (This_State : in out State; This_Y : Natural); function Get_Y (This_State : State) return Natural; procedure Grow (This_Object : Root.Object; Marker : Boolean := False); function Part_Of (This_Object : Root.Object) return State_Ptr; procedure Set_Heir (This_State_Ptr : in out State_Ptr; Heir : Root.Object); function Get_Heir (This_State_Ptr : State_Ptr) return Root.Object; private type State is record Y : Natural; Offspring : Natural := 0; Heir : Root.Object; end record; type State_Ptr is access State; end Vegetable;