DAToolsExample.mesa
Copyright Ó 1987 by Xerox Corporation. All rights reserved.
Christian Le Cocq May 5, 1987 9:59:12 am PDT
Bland, May 13, 1987 3:58:25 pm PDT
Example of the Basic DATools interfaces
DIRECTORY
Core USING [CellType],
Rope USING [ROPE];
DAToolsExample: CEDAR DEFINITIONS
~ BEGIN
WriteToFile: PUBLIC PROC [cellType: Core.CellType, fileName: Rope.ROPE, msgOk: BOOLEANFALSE];
Writes the contents of the cellType structure to a file.
END.