DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T V

⟦b77996959⟧ TextFile

    Length: 952 (0x3b8)
    Types: TextFile
    Names: »V«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 

TextFile

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;