ImagerMemory.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Implements a context class capable of memorizing Imager calls, and playing them back into another context.
Eric Nickell, June 25, 1985 4:23:17 pm PDT
DIRECTORY
Imager USING [Context];
ImagerMemory: CEDAR DEFINITIONS
~ BEGIN
Context: TYPE ~ Imager.Context;
NewMemoryContext: PROC RETURNS [c: Context];
Replay: PROC [c, into: Context];
Replays the Imager calls that c has memorized into into.
END.