<<>> <> <> <> <<>> <> <> <<>> <<>> DIRECTORY ImagerDevice USING [Device], ImagerPrintColor USING [DeviceColorData], ImagerSample USING [SampleMap]; ImagerPrintDevice: CEDAR DEFINITIONS ~ BEGIN IsPrintDevice: PROC [device: ImagerDevice.Device] RETURNS [BOOL]; <> GetColorData: PROC [device: ImagerDevice.Device] RETURNS [ImagerPrintColor.DeviceColorData]; SetColorData: PROC [device: ImagerDevice.Device, deviceColorData: ImagerPrintColor.DeviceColorData]; GetDeviceBitmap: PROC [device: ImagerDevice.Device] RETURNS [ImagerSample.SampleMap]; SetDeviceBitmap: PROC [device: ImagerDevice.Device, bitmap: ImagerSample.SampleMap] RETURNS [clipperNeedsFixing: BOOL]; <> END.