-- File: ModelDB.config
-- Contents: Config containing Cypress Model Level
-- File created by Rick Cattell on June 10, 1980
-- Last edited by:
--    Rick Cattell on November 8, 1983 2:23 pm
--    MBrown on 15-Jul-81 18:56:23
--    Willie-Sue on January 25, 1983 4:43 pm
-- Last Edited by: Wert, August 4, 1984 8:44:29 pm PDT

ModelDB: CONFIGURATION
  IMPORTS
    Atom,
    BasicTime,
    ConvertUnsafe,
    DBSegmentExtras,
    DBStorage,
    DBStats,
    FS,
    IO,
    Rope

  EXPORTS
    DB, -- client interface
    DBEnvironment, -- signals for rest of Cypress
    DBExtras, -- for extra stuff added to supplement the DB interface
    DBModel, -- for DBShow
    DBModelPrivate -- for test programs
  
  CONTROL
    DBImpl,
    DBExtrasImpl,
    DBModelGlobalImpl,
    DBModelSystemImpl,
    DBModelBasicImpl,
    DBModelSetImpl,
    DBModelPrivateImpl

  = BEGIN

  DBImpl;
  DBExtrasImpl;
  DBModelGlobalImpl;
  DBModelSystemImpl;
  DBModelBasicImpl;
  DBModelSetImpl;
  DBModelPrivateImpl;

END.--ModelDB