DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T V ┃
Length: 606 (0x25e) Types: TextFile Names: »V«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦this⟧
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;