-- File: Squirrel.config
-- Last edited by:
--   Cattell on August 26, 1983 2:00 pm
--   Willie-Sue on September 23, 1983 5:02 pm
--   Donahue on August 8, 1983 2:37 pm

Squirrel: CONFIGURATION LINKS: CODE
 IMPORTS
  Atom, CedarSnapshot, CIFS, CommandTool, DBIcons, FileIO, Graphics, 
  AlpineWalnutCmds, -- FinchSmarts, -- IO, MBQueue, Process, Rope, SafeStorage, List,
  System, UserExec, UserProfile, UserTerminal, VTables, Runtime, Buttons, DateAndTime,
  
  BcdOps, Convert, LongString, PilotLoadStateOps, String, Time, PageFault,
  ViewerEvents, ViewerLocks,

  Cursors, InputFocus, Icons, Labels, Menus, MessageWindow, Rules,
  TIPUser, VFonts, ViewerBLT, ViewerOps, ViewerIO, VirtualDesktops,
  TypeScript, IconManager,

  DB, DBEnvironment, ShowPress, TiogaMenuOps
  
  EXPORTS Nut, NutViewer, NutOps, Whiteboard, DBNames, DBIcons, WhiteboardNutImpl

CONTROL SquirrelToolImpl, DBIconsImpl, DBNamesImpl,
			  NutImpl, NutOpsImpl, DomainNutImpl, RelationNutImpl, SchemaImpl,
			  NutViewerImpl,
			  WhiteboardNutImpl, WhiteboardToolImpl,
			  NutViewerMiscImpl, NutDefaultImpl =

BEGIN

-- Basic Nut manager
NutImpl;
NutViewerPrivateImpl;
NutViewerMiscImpl;
NutViewerImpl;
NutOpsImpl;

-- Default displayer & editor
NutDefaultImpl;
TuplesEditorImpl;
EntityEditorImpl;
NoteEditorImpl;
VTablesImpl;
DBIconsImpl;

-- Data schema nut implementation
DomainNutImpl;
RelationNutImpl;
SchemaImpl;
SchemaCopyImpl;

-- Whiteboard nut implementation
WhiteboardNutImpl;
WhiteboardImpl;
WhiteboardToolImpl;

-- Squirrel window and associated functions
NutDumpImpl;
NutLoadImpl;
SquirrelToolImpl;
MBWindowsImpl;

-- Handling cross segment references (will be superseded)
DBNamesImpl;

END.