-- DummySMDFImpl.mesa
-- last edit by Satterthwaite, August 8, 1983 1:22 pm
DIRECTORY
IO: TYPE USING [PutF],
Rope: TYPE USING [Text],
SMDF: TYPE USING [],
SMOps: TYPE USING [MS],
SMTree: TYPE Tree USING [Link];
SMDFImpl: CEDAR PROGRAM IMPORTS IO EXPORTS SMDF ~ {
OPEN Tree~~SMTree;
WriteDFFile: PUBLIC PROC[
ms: SMOps.MS, t: Tree.Link, modelFileName, dfFileName: Rope.Text] ~ {
ms.out.PutF["MakeDFFile not implemented; DF file NOT written\n"]}; -- place holder
}.