-- SMBcd.Mesa
-- last edit by Schmidt, June 1, 1983 12:56 pm
-- last edit by Satterthwaite, June 14, 1983 4:26 pm
DIRECTORY
IO: TYPE USING [STREAM],
Rope: TYPE USING [Text],
SMOps: TYPE USING [MS],
SMTree: TYPE Tree USING [Link];
SMBcd: CEDAR DEFINITIONS~{
ReadModelBcdPrefix: PROC[ms: SMOps.MS, input: IO.STREAM];
-- leaves input stream positioned to be read as a model
WriteModelBcd: PROC[
ms: SMOps.MS, t: SMTree.Link, modelFileName, bcdFileName: Rope.Text];
}.