TrcEdit.mesa
Copyright © 1986 by Xerox Corporation. All rights reserved.
Eric Nickell, April 15, 1986 0:00:19 am PST
DIRECTORY
Trc USING [TRC];
TrcEdit: CEDAR DEFINITIONS
~ BEGIN
NewEditTrc: PROC [underlying: Trc.TRC] RETURNS [trc: Trc.TRC];
Builds a trc which can edit some underlying trc
NewUnderlyingTrc: PROC [edit, new: Trc.TRC, notify: BOOLTRUE];
Replace with current underlying trc with a new one.
GetUnderlyingTrc: PROC [edit: Trc.TRC] RETURNS [underlying: Trc.TRC];
Fetches the current underlying trc.
END.