-- This package provides two different version of the browser.
--
with Subtypes;
use Subtypes;
package Browser is

    procedure Browse_Catalog_In
                 (This_Library : in Full_Name; Response : in String);
    --
    -- Attempts to resolve the Data File in the specified library, parse
    -- it, and bring up the browser.

    procedure Browse_Catalog_In (This_Library : in String;
                                 Default_Version : in Full_Name;
                                 Response : in String);
    --
    -- This version of the browser is "with"ed by the load-proc.
    --
    -- The library can be any library which contains a Data File, or it
    -- can be the special name "<DEFAULT_LIBRARY>", in which case the
    -- argument to "Default_Version" is used instead.
    --
    -- NOTE: Do not change the name of this procedure without also changing
    -- the name of the

end Browser;
