<> <> <> <<>> <> <> <> <> <> <<>> DIRECTORY Rope USING [ROPE], SymTab USING [Ref]; ExpertPCBRead: CEDAR DEFINITIONS ~ BEGIN <> PCBTable: TYPE = SymTab.Ref; Part: TYPE = REF PartRep; PartRep: TYPE = RECORD[ x: INT, y: INT, orientation: NAT, libraryEntry: CARD ]; <> <<>> ReadPCBFile: PROC [file: Rope.ROPE] RETURNS [pCBTable: PCBTable]; <> <> <<>> END.