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

⟦d5c3a2f5d⟧ TextFile

    Length: 905 (0x389)
    Types: TextFile
    Names: »V«

Derivation

└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─ ⟦d65440be7⟧ »DATA« 
        └─⟦this⟧ 

TextFile

package Object is
    type Classe is (Void_Classe, Integer_Classe, Boolean_Classe,
                    String_Classe, Turtle_Classe, Pen_Classe, Bloc_Classe);
    type Reference is private;
    Void_Reference : constant Reference;
    function Create (Ident_Classe : Classe; Ident_Object : Integer)
                    return Reference;
    procedure Copy (Source : Reference; Target : in out Reference);
    function Get_Value (From_Object : Reference) return Integer;  
    function Get_Classe (From_Object : Reference) return Classe;  
    function Equal (A, B : Object.Reference) return Standard.Boolean;
    procedure En_Texte (The_Object : Reference);
private  
    type Reference is
        record
            Id_Classe : Classe;
            Id_Object : Standard.Integer;
        end record;
    Void_Reference : constant Reference :=
       (Id_Classe => Void_Classe, Id_Object => 0);
end Object;