TiogaOpsDefs.mesa
Copyright Ó 1985, 1986, 1991 by Xerox Corporation. All rights reserved.
written by Bill Paxton. June 1982
last written by Paxton. December 28, 1982 1:06 pm
Doug Wyatt, October 29, 1991 3:08 pm PST
This contains definitions shared by TiogaOps and TEditDocument.
DIRECTORY
Tioga USING [Node, Location, Order];
TiogaOpsDefs: CEDAR DEFINITIONS = BEGIN
Ref: TYPE = Tioga.Node;
Location: TYPE = Tioga.Location;
WhichNodes: TYPE = { root, selection };
SelectionGrain: TYPE = { point, char, word, node, branch } ¬ char;
WhichSelection: TYPE = { primary, secondary, feedback };
Order: TYPE = Tioga.Order;
END.