CoreUnspecifiedImpl.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Barth, October 2, 1985 9:34:23 am PDT
Serlet, July 11, 1985 3:49:37 pm PDT
Spreitzer, October 2, 1985 6:23:16 pm PDT
DIRECTORY Core, CoreUnspecified;
CoreUnspecifiedImpl: CEDAR PROGRAM
EXPORTS CoreUnspecified
=
BEGIN OPEN Core;
unspecifiedCellClass: PUBLIC CellClass ← NEW [CellClassRec ← [
name: "unspecified",
read: Read,
write: Write
]];
Read: PROC [design: Design, in: STREAM] RETURNS [me: CellType] = {
ERROR --not yet understood--;
};
Write: PROC [out: STREAM, me: CellType] = {
ERROR --not yet understood--;
};
END.