|
|
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 - metrics - downloadIndex: T V
Length: 580 (0x244)
Types: TextFile
Names: »V«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
└─⟦129cab021⟧ »DATA«
└─⟦this⟧
with Tad_Global;
package Tad_Group is
type Object is private;
procedure Create_New_Group_Member
(The_Object : out Object; The_Name : String);
function Compare_Name (Object1, Object2 : Object) return Integer;
function What_Name (The_Object : Object) return String;
function What_Material (The_Object : Object) return Tad_Global.Object;
private
type Pvar is access Tad_Global.Object;
type Object is
record
Name : String (1 .. 20);
Access_Var : Pvar;
end record;
end Tad_Group;