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

⟦7552f74a2⟧ TextFile

    Length: 832 (0x340)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Arguments;
with Block;
with Message;
with Object;

package Block_Class is
    Incorrect_Method, Instance_Table_Full, Incorrect_Return_Object : exception;

    Evaluate_Msg : constant String := "Valeur";

    Keyword_Evaluate_Msg : constant String := "Valeur:";
    type Struct_Table is private;

    function Create (Value : Block.Node) return Object.Reference;

    function Send (To_Object : Object.Reference;
                   The_Message : Message.Selector;
                   With_Arguments : Arguments.List := Arguments.Void_Arguments)
                  return Object.Reference;

private

    type Indicator is (Unused, Used);

    type Struct_Table is
        record
            Indic : Indicator := Unused;
            Value : Block.Node;
        end record;


    function First_Free return Natural;

end Block_Class;