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

⟦24c3e211a⟧ TextFile

    Length: 497 (0x1f1)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Text_Io;
package Element_De_Tri is
    type Object is private;

    function Temps_Value (E : Object) return Duration;
    function Contenu_Value (E : Object) return String;
    procedure Affecter (E : in out Object; T : Duration);
    procedure Affecter (E : in out Object; A_File : Text_Io.File_Type);

private
    type Object is
        record
            Temps : Duration := 0.0;
            Contenu : String (1 .. 32);
            Size : Natural;
        end record;

end Element_De_Tri;