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: ┃ B T

⟦8f8e561c3⟧ TextFile

    Length: 3508 (0xdb4)
    Types: TextFile
    Names: »B«

Derivation

└─⟦85b835f43⟧ Bits:30000549 8mm tape, Rational 1000, Xlib rev 6.00
    └─ ⟦0c20f784e⟧ »DATA« 
        └─⟦1abbe589f⟧ 
            └─⟦49e7f20b9⟧ 
                └─⟦this⟧ 

TextFile

with Xlbt_Proc_Var;  
use Xlbt_Proc_Var;  
with Xlbt_String;  
use Xlbt_String;

with Test_Io;  
use Test_Io;

with Exe_100;  
use Exe_100;

package body Exe_106_Pk is

------------------------------------------------------------------------------
-- Test Procedure Variables - for Procedure types
------------------------------------------------------------------------------

--\f

    package Test_Constrained_Record_Type is  
        procedure Zot;  
    end Test_Constrained_Record_Type;

    package body Test_Constrained_Record_Type is

        Arg1 : Constrained_Record_Type;  
        Arg2 : Constrained_Record_Type;

        package Constrained_Record_Type_Test_Proc_Inout            is  
           new Test_Proc_Inout (Constrained_Record_Type, Arg1);  
        package Constrained_Record_Type_Test_Proc_In               is  
           new Test_Proc_In (Constrained_Record_Type);  
        package Constrained_Record_Type_Test_Proc_In_In            is  
           new Test_Proc_In_In (Constrained_Record_Type,  
                                Constrained_Record_Type);  
        package Constrained_Record_Type_Test_Proc_In_In_In         is  
           new Test_Proc_In_In_In (Constrained_Record_Type,  
                                   Constrained_Record_Type,  
                                   Constrained_Record_Type);  
        package Constrained_Record_Type_Test_Proc_In_In_In_In      is  
           new Test_Proc_In_In_In_In  
                  (Constrained_Record_Type, Constrained_Record_Type,  
                   Constrained_Record_Type, Constrained_Record_Type);  
        package Constrained_Record_Type_Test_Proc_In10             is  
           new Test_Proc_In10 (Constrained_Record_Type, Constrained_Record_Type,  
                               Constrained_Record_Type, Constrained_Record_Type,  
                               Constrained_Record_Type, Constrained_Record_Type,  
                               Constrained_Record_Type, Constrained_Record_Type,  
                               Constrained_Record_Type,  
                               Constrained_Record_Type);  
        package Constrained_Record_Type_Test_Proc_In_In_In_Out_Out is  
           new Test_Proc_In_In_In_Out_Out  
                  (Constrained_Record_Type, Constrained_Record_Type,  
                   Constrained_Record_Type, Constrained_Record_Type,  
                   Constrained_Record_Type, Arg1, Arg2);  
        package Constrained_Record_Type_Test_Proc_In_In_Out_Out    is  
           new Test_Proc_In_In_Out_Out  
                  (Constrained_Record_Type, Constrained_Record_Type,  
                   Constrained_Record_Type,  
                   Constrained_Record_Type, Arg1, Arg2);

        procedure Zot is  
        begin  
            Constrained_Record_Type_Test_Proc_Inout.Zot;  
            Constrained_Record_Type_Test_Proc_In.Zot;  
            Constrained_Record_Type_Test_Proc_In_In.Zot;  
            Constrained_Record_Type_Test_Proc_In_In_In.Zot;  
            Constrained_Record_Type_Test_Proc_In_In_In_In.Zot;  
            Constrained_Record_Type_Test_Proc_In10.Zot;  
            Constrained_Record_Type_Test_Proc_In_In_In_Out_Out.Zot;  
            Constrained_Record_Type_Test_Proc_In_In_Out_Out.Zot;  
        end Zot;

    end Test_Constrained_Record_Type;

--\f

    procedure Test_Procedure_Variable is  
    begin

        Test_Constrained_Record_Type.Zot;

        Put_Line ("Exe_106 is done.");

    end Test_Procedure_Variable;

end Exe_106_Pk;