1234567891011121314151617181920212223242526272829303132 |
- {$mode delphi}
- {$modeswitch objectivec1}
- {$modeswitch cvar}
- {$packrecords c}
- unit DefinedClassesQuartzComposer;
- interface
- type
- QCComposition = objcclass external;
- QCCompositionLayer = objcclass external;
- QCCompositionParameterView = objcclass external;
- QCCompositionPickerPanel = objcclass external;
- QCCompositionPickerView = objcclass external;
- QCCompositionRepository = objcclass external;
- QCPatchController = objcclass external;
- QCPlugIn = objcclass external;
- QCPlugInViewController = objcclass external;
- QCRenderer = objcclass external;
- QCView = objcclass external;
- QCCompositionRendererProtocol = objcprotocol external name 'QCCompositionRenderer';
- QCPlugInContextProtocol = objcprotocol external name 'QCPlugInContext';
- QCPlugInInputImageSourceProtocol = objcprotocol external name 'QCPlugInInputImageSource';
- QCPlugInOutputImageProviderProtocol = objcprotocol external name 'QCPlugInOutputImageProvider';
- type
- NSImage = objcclass external;
- NSOpenGLContext = objcclass external;
- NSOpenGLPixelFormat = objcclass external;
- implementation
- end.
|