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

⟦b88b78d5b⟧ TextFile

    Length: 708 (0x2c4)
    Types: TextFile
    Names: »B«

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

with Attribute_Options;
use Attribute_Options;
separate (Inquiry_Operations)

--  This procedure allows the User to manipulate the Abstraction of the
--    Attribute record (internal state memory) needed by this package.
--    This information is maintained in the package body of
--    ATTRIBUTE_OPTIONS.

procedure Select_Attributes is
    procedure Query_Options is separate;
    procedure Display_Options is separate;
begin
    if Answer ("Do you wish to change query?") then
        Query_Options;
    end if;
    if Answer ("Do you wish to change display?") then
        Display_Options;
    end if;
end Select_Attributes;
--*****************************************************************************