<> <> <> <> <> 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.