StoreLayout.mesa 
Copyright © 1985 by Xerox Corporation. All rights reversed.
Bertrand Serlet April 22, 1986 4:09:47 pm PST
DIRECTORY Core;
StoreLayout: CEDAR DEFINITIONS = BEGIN
Theory
....
Conveniences
CellType : TYPE = Core.CellType;
ROPE: TYPE = Core.ROPE;
Wire: TYPE = Core.Wire;
Storing and retrieving
StoreDesign: PROC [cellType: CellType, name: ROPE];
Stores on the file name
SetRetrieveLayout: PROC [cellType: CellType, name: ROPE];
Attaches a LayoutProc for retrieving this design
END.