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

⟦8879ead7d⟧ TextFile

    Length: 627 (0x273)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

package Object is

    Predefined_Void : constant String := "Vide";


    type Reference is private;

    type Class is (C_Void, C_Boolean, C_Integer,
                   C_String, C_Block, C_Pen, C_Turtle);

    function Void_Reference return Reference;

    function Create (The_Class : Class; Ident : Integer := 0) return Reference;

    function The_Class (The_Reference : Reference) return Class;

    function Identificator (The_Reference : Reference) return Integer;

private

    type Reference is
        record
            The_Class : Class := C_Void;
            Ident : Integer := 0;
        end record;

end Object;