<> <> <> <> <<>> DIRECTORY Profiles USING [Profile], Rope USING [ROPE]; ColorizeViewPoint: CEDAR DEFINITIONS ~ BEGIN ROPE: TYPE ~ Rope.ROPE; Warning: SIGNAL [class: ATOM, explanation: ROPE]; Error: ERROR [class: ATOM, explanation: ROPE]; <> <> <> <> <<>> Do: PROC [fromFile, toFile: ROPE, palette: Profiles.Profile, checkSystemSetting: CheckSystemSettingProc]; <> <> <> <> DoRope: PROC [fromIP: ROPE, palette: Profiles.Profile, checkSystemSetting: CheckSystemSettingProc] RETURNS [toIP: ROPE]; <> CheckSystemSettingProc: TYPE ~ PROC [key: ROPE, default: BOOL] RETURNS [BOOL]; Setting: TYPE ~ RECORD [key, description: ROPE, default: BOOL]; ExaminesTheseSettings: PROC RETURNS [LIST OF Setting]; <> <> END.