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

Cypress: CONFIGURATION
  IMPORTS
    -- From Alpine
    DBFileAlpine,
    -- From Cedar
    AMTypes, Atom, Convert, ConvertUnsafe, DateAndTime, FileIO, Inline, IO, Process,
    ProcessProps, Rope, RopeInline, RTOS, RTTypesBasic, SafeStorage, System, Time,
    -- From Pilot and CompatibilityPackage
    Directory, File, Heap, Space, Storage, String, Transaction
  EXPORTS
    DB,
    DBShow,
    DBEnvironment,
    -- For debugging purposes we export the following:
    DBModelPrivate,
    DBFile,
    DBSegment,
    DBStats,
    DBStorage,
    DBStorageField,
    DBStorageTuple,
    DBStoragePrint
  CONTROL
    DBShow,
    ModelDB,
    SegmentDB,
    StorageDB =

BEGIN

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