FeedbackTypes.mesa
Copyright © 1988 by Xerox Corporation. All rights reserved.
Bier, August 23, 1989 10:21:11 am PDT
Contents: The MsgRouter type is separated from the Feedback interface, so that other interfaces can depend on this type without depending on the Feedback interface, which may change more frequently.
The concrete value of MsgRouterObj is defined in FeedbackConcreteTypes.mesa, which should be considered private.
DIRECTORY
;
FeedbackTypes: CEDAR DEFINITIONS = BEGIN
MsgRouter: TYPE = REF MsgRouterObj;
MsgRouterObj: TYPE;
END.