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

⟦2eae6bc0e⟧ TextFile

    Length: 817 (0x331)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Easy_Y;
with Object;

package Class_Printer is
    procedure Create;
    procedure Forward (Number : in Object.Index);
    procedure Backward (Number : in Object.Index);
    procedure Put (The_String : String);
    procedure Put_Tab (The_String : String);
    procedure Put (This_Object : Object.Reference);
    procedure New_Line (Number : Object.Index := 1);
    procedure Open (X, Y : Object.Index; Screen : String);
    procedure Close;
private
    Flag_Window_Requester : Boolean := False;
    Flag_Window_Unparse : Boolean := False;
    Column : Object.Index := 0;
    Position : Object.Index := 1;
    Line_Max : Object.Index := 1;
    Line_Number : Object.Index := 1;
    The_Height : Object.Index := 600;
    The_Width : Object.Index := 640;
    Unparse_Window : Easy_Y.Window_Type;
end Class_Printer;