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 - metrics - download
Index: T V

⟦c5e1a7203⟧ TextFile

    Length: 1549 (0x60d)
    Types: TextFile
    Names: »V«

Derivation

└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
    └─⟦5cb1d1d7f⟧ »DATA« 
        └─⟦3b1ee7bd8⟧ 
            └─⟦this⟧ 

TextFile

package Report is

    procedure Create (Name : String);
    -- path name for the report

    procedure Close;

    procedure User_Name_And_Time;

    procedure Value (Parameter_Name : String;
                     Value : Boolean;
                     Indent : Natural := 4);
    procedure Value (Parameter_Name : String;
                     Value : Character;
                     Indent : Natural := 4);
    procedure Value (Parameter_Name : String;
                     Value : String;
                     Indent : Natural := 4);
    procedure Value (Parameter_Name : String;
                     Value : Integer;
                     Indent : Natural := 4);
    procedure Value (Parameter_Name : String;
                     Value : Float;
                     Indent : Natural := 4);

    procedure Value (Parameter_Name : String;
                     Value : Duration;
                     Indent : Natural := 4);


    generic
        type User_Defined is private;
        with function Image (User_Type : User_Defined) return String is <>;
    procedure User_Defined_Type (Parameter_Name : String;
                                 Value : User_Defined;
                                 Indent : Natural := 4);

    procedure Begin_Execution (Subprogram : String);

    procedure Capture_Output;
    procedure Terminate_Execution;

    procedure Exception_Raise (Exception_Name : String);

    procedure Comment (Comments : String);

    procedure Passed;
    procedure Failed;

    procedure New_Line (Repeat : Positive := 1);

end Report;