summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/cloudkit/CKAsset.inc
blob: fb59f2fd9ddbc711d822e5c8fe59c3c505e16307 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ Parsed from CloudKit.framework CKAsset.h }


{$ifdef TYPES}
type
  CKAssetPtr = ^CKAsset;
{$endif}

{$ifdef CLASSES}

type
  CKAsset = objcclass external (NSObject)
  public
    function init: instancetype; message 'init';
    function initWithFileURL (fileURL: NSURL): instancetype; message 'initWithFileURL:';
    function fileURL: NSURL; message 'fileURL';
  end;
{$endif}