-- File: Cypress.config
-- Last edited by: 
  -- Cattell on November 2, 1983 10:19 am
  -- MBrown on February 22, 1983 1:27 pm
  -- Willie-Sue on May 3, 1983 10:36 am

Cypress: CONFIGURATION
  IMPORTS
    -- From Alpine
    AlpFile, AlpineInterimDirectory, AlpInstance, AlpTransaction,
    -- From Cedar
    AMTypes, Atom, BasicTime, ConvertUnsafe,
    FS, IO, Process, ProcessProps, Rope, RPC, SafeStorage, VM
  EXPORTS
    DB,
    DBShow,
    DBEnvironment,
    -- For debugging purposes we export the following:
    DBFileAlpine,
    DBModelPrivate,
    DBFile,
    DBSegment,
    DBStats,
    DBStorage,
    DBStorageField,
    DBStorageTuple,
    DBStoragePrint
  CONTROL
    DBShowImpl,
    ModelDB,
    SegmentDB,
    StorageDB =

BEGIN

  SegmentDB; -- Segment and Cache impls
  StorageDB;  -- Storage and Index impls
  ModelDB;  -- Model and Tuple impls
  DBShowImpl;  -- For debugging output
    
END. -- Cypress