File: SVError.mesa
Last edited by: Eric Bier on July 3, 1984 5:26:29 pm PDT
Contents: Routines for handling user error messages throughout Solidviews. (It's never too late to try to do it right.
DIRECTORY
IO,
Rope;
SVError: CEDAR DEFINITIONS = BEGIN
SetErrorStream: PROC [errorStream: IO.STREAM];
GetErrorStream: PROC [] RETURNS [errorStream: IO.STREAM];
Append: PROC [msg: Rope.ROPE, clearHerald: BOOLFALSE, addCR: BOOLFALSE];
AppendHerald: PROC [msg: Rope.ROPE, clearHerald: BOOL];
AppendTypescript: PROC [msg: Rope.ROPE];
Blink: PROC [];
NotYetImplemented: SIGNAL;
END.