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

⟦05163811a⟧ TextFile

    Length: 1206 (0x4b6)
    Types: TextFile
    Names: »V«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─ ⟦d65440be7⟧ »DATA« 
        └─⟦this⟧ 

TextFile

package Etapes is
    type Time is private;
    type Action is private;
    type Step is private;
    function Create_Step (The_Time : Time; The_Action : Action; The_Next : Step)
                         return Step;
    function The_Time_Of_The_Step (The_Step : Step) return Time;
    function The_Action_Of_The_Step (The_Step : Step) return Action;
    function The_Next_Step (The_Step : Step) return Step;
    procedure Change_The_Time_Of_The_Step
                 (The_Step : in out Step; The_Time : Time);  
    procedure Change_The_Action_Of_The_Step
                 (The_Step : in out Step; The_Action : Action);
    procedure Put_An_Action_In_The_Step
                 (The_Step : in out Step; The_Time : Time; The_Action : Action);
    procedure Remove_A_Step (The_Step : in out Step; The_Time : Time);
    procedure Delete_A_Step (The_Step : in out Step);

private
    type Time is delta 0.1 range 0.0 .. 1000000.0;
    type Action is (Activer, Desactiver, Changer_Valeur, Evoluer);
    type Stepcell;
    type Step is access Stepcell;
    type Stepcell is
        record
            The_Time : Time;
            The_Action : Action;
            The_Next : Step;
        end record;
end Etapes;