|
|
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: T V
Length: 952 (0x3b8)
Types: TextFile
Names: »V«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
└─⟦129cab021⟧ »DATA«
└─⟦this⟧
with Action;
with Time;
package Step is
type Object is private;
Empty_Step : constant Object;
function Create (The_Time : Time.Object;
The_Action : Action.Object;
Next_Step : Step.Object) return Step.Object;
function Timeof (The_Step : Step.Object) return Time.Object;
function Actionof (The_Step : Step.Object) return Action.Object;
function Nextof (The_Step : Step.Object) return Step.Object;
function Is_Empty (The_Step : Step.Object) return Boolean;
procedure Put_Action (The_Step : in out Step.Object;
The_Time : Time.Object;
The_Action : Action.Object);
private
type Stepcell is
record
The_Time : Time.Object;
The_Action : Action.Object;
The_Next : Step.Object;
end record;
type Object is access Stepcell;
Empty_Step : constant Object := null;
end Step;