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

⟦c4117cf4f⟧ TextFile

    Length: 1647 (0x66f)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Element;
with Station_Identifier;  
with Text_Io;
package Trame_Product is

    -- Attention ( 2/2/1994 ) : changer le type de acteur avec element.Num_acteur
    -- Prevoir une fonction de lecture du nom du fichier destination ou ecran

    procedure Choose_The_Destination;

    procedure Write_Activate (The_Station : Station_Identifier.Object;
                              The_Adress_Station : Element.Adress;
                              The_Time : Natural;
                              The_Acteur : Natural);

    procedure Write_Desactivate (The_Station : Station_Identifier.Object;
                                 The_Adress_Station : Element.Adress;
                                 The_Time : Natural;
                                 The_Acteur : Natural);

    procedure Write_Change (The_Station : Station_Identifier.Object;
                            The_Adress_Station : Element.Adress;
                            The_Time : Natural;
                            The_Acteur : Natural;
                            The_Value : Natural);

    procedure Write_Evoluate (The_Station : Station_Identifier.Object;
                              The_Adress_Station : Element.Adress;
                              The_Time : Natural;
                              The_Acteur : Natural;
                              The_Value : Natural;
                              The_Duration : Natural);

    procedure Write_Number_Of_Station (The_Number : Station_Identifier.Object);

    procedure Done;

private  
    type Destination is (Screen, File);
    The_Destination : Destination;
    File_Dest : Text_Io.File_Type;
end Trame_Product;