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

⟦a41552ee5⟧ TextFile

    Length: 606 (0x25e)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

package Object is

    type Class is (Vide, Entier, Booleen, Chaine, Bloc, Tortue, Stylo);

    type Reference is private;
    Void_Reference : constant Reference;

    function Create (What : Class; Value : Integer) return Reference;
    function Get_Id (Object : Reference) return Integer;
    function Get_Class (Object : Reference) return Class;
    function Equal (Right, Left : Reference) return Boolean;

private
    type Reference is
        record
            Class_Id : Class;
            Object_Id : Integer;
        end record;
    Void_Reference : constant Reference := (Vide, 0);

end Object;