-- FILE: Fugleman.mesa
-- Last Edited by Horning, June 7, 1982 2:55 pm
Fugleman: CEDAR DEFINITIONS =
BEGIN
Handle: TYPE = REF Rep;
Rep: TYPE; -- opaque type for the representation of the object
FugleFailure: ERROR;
NewFugleman: PROCEDURE RETURNS [Handle];
-- Makes a new Fugleman object
Print: PROCEDURE [h: Handle];
Check: PROCEDURE [h: Handle];
-- ERRORs: FugleFailure
-- Returns normally if Fugleman object OK
SomeProc: PROCEDURE [h: Handle, otherArgument: INT] RETURNS [INT];
-- Comment goes here saying what it does
END.
CHANGE LOG