IndirectionImpl.mesa
Copyright Ó 1992 by Xerox Corporation. All rights reserved.
Created by Christian Jacobi, March 11, 1992
Christian Jacobi, May 27, 1992 11:36 am PDT
DIRECTORY Indirection;
IndirectionImpl: CEDAR PROGRAM
IMPORTS Indirection
EXPORTS Indirection ~
BEGIN OPEN Indirection;
Generate: PUBLIC PROC [h: Handle, callData: REF] RETURNS [REF] = {
RETURN [Indirection.InlineGenerate[h, callData]]
};
END.