-- SMSrcBcd.Mesa, 
-- last edited by Schmidt, May 2, 1983 3:03 pm
-- last edited by Satterthwaite, May 26, 1983 12:41 pm

DIRECTORY
  SMFI: TYPE USING [BcdFileInfo, SrcFileInfo],
  SMOps: TYPE USING [MS];
	
SMSrcBcd: CEDAR DEFINITIONS~{
  	
 -- these calls are only made under the SMFIImpl monitor lock
 -- this module should only be imported by SMFIImpl
	
  AddCedarInfo: PROC[ms: SMOps.MS, fi: SMFI.SrcFileInfo];
	
 -- it should only be necessary to call this for .bcd files in the model, e.g. @X.bcd;

  AddBcdInfo: PROC[ms: SMOps.MS, fi: SMFI.BcdFileInfo];

  }.