-- AnalyzeDefs.mesa -- Communications between Analyze and the world. All procs implemented by Analyze -- Maureen Stone 8-Jan-82 13:15:50 DIRECTORY LSFit USING [Handle], CurveDefs USING [SampleHandle,LinkHandle]; AnalyzeDefs: DEFINITIONS = BEGIN GetSamples: PROC RETURNS[first,last: CurveDefs.SampleHandle]; --called by Sketch SetSamples: PROC[first,last: CurveDefs.SampleHandle]; --called by Sketch GetHandle: PROC RETURNS[handle: LSFit.Handle]; --called by Sketch SetHandle: PROC[handle: LSFit.Handle]; --called by Sketch GetLinks: PROC RETURNS[links: CurveDefs.LinkHandle]; --called by ContourMain END.