<> <> DIRECTORY ViewerIO USING [CreateViewerStreams], IO USING [STREAM], Rope USING [ROPE] ; ViewerIOBridgeImpl: CEDAR PROGRAM IMPORTS ViewerIO EXPORTS IO = BEGIN CreateViewerStreams: PUBLIC PROC [name: Rope.ROPE] RETURNS [in: IO.STREAM, out: IO.STREAM] = {[in, out] _ ViewerIO.CreateViewerStreams[name]}; END.