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

⟦21d039b59⟧ TextFile

    Length: 547 (0x223)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

package Tad_Parameter is

    type Object is private;

    procedure Create_New_Param (The_Object : out Object; The_Order : Natural);
    procedure Set_Name (The_Object : in out Object; The_Name : String);

    function Get_Order (The_Object : Object) return Natural;
    function Get_Name (The_Object : Object) return String;

    function Compare_Order (Object1, Object2 : Object) return Integer;

private
    type Object is
        record
            Name : String (1 .. 20);
            Order : Natural;
        end record;

end Tad_Parameter;