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

⟦b769d8ee9⟧ TextFile

    Length: 1023 (0x3ff)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Object;
with Message;
with Easy_Y;

package Class_Window is

    function Send (This_Message : Message.Keyword; To : Object.Reference)
                  return Object.Reference;

    function Send (This_Message : Message.Binary; To : Object.Reference)
                  return Object.Reference;

    function Send (This_Message : Message.Unary; To : Object.Reference)
                  return Object.Reference;

    procedure Put (An_Object : Object.Reference);

    function Create (From : Easy_Y.Window_Type) return Object.Reference;

    procedure Create;

    function Get_Terminal_Name return Object.Tiny_String;
    procedure Put_Terminal_Name (What : Object.Tiny_String);

    function Get (Index : Object.Index) return Easy_Y.Window_Type;
    procedure Put (Window : Easy_Y.Window_Type; Index : Object.Index);

private

    Last : Object.Index := 0;

    Table : array (Object.Index range 1 .. Object.Max_Window) of
               Easy_Y.Window_Type;

    Terminal_Name : Object.Tiny_String;

end Class_Window;