File: TiogaRopeEditor.mesa
Copyright © 1984 by Xerox Corporation. All rights reserved.
Created by: Bob Mayo, August 5, 1984 8:17:50 pm PDT
Last Edited by: Mayo, August 5, 1984 8:55:06 pm PDT
-- Create a tioga viewer onto a rope, allow the user to edit it, and then return the new rope and destroy the viewer after he hits the save button.
DIRECTORY
Rope USING [ROPE];
TiogaRopeEditor: CEDAR DEFINITIONS = BEGIN
-- create a viewer onto a rope, let the guy edit it, and return the new rope
Edit: PROC [old, caption, comment: Rope.ROPE ← NIL] RETURNS [Rope.ROPE];
END.