summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/cloudkit/CKRecordID.inc
blob: 550ae8edc43264ccf5fd3e1662498dcc37611862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ Parsed from CloudKit.framework CKRecordID.h }


{$ifdef TYPES}
type
  CKRecordIDPtr = ^CKRecordID;
{$endif}

{$ifdef CLASSES}

type
  CKRecordID = objcclass external (NSObject, NSSecureCodingProtocol, NSCopyingProtocol)
  public
    function init: instancetype; message 'init';
    function initWithRecordName (recordName: NSString): instancetype; message 'initWithRecordName:';
    function initWithRecordName_zoneID (recordName: NSString; zoneID: CKRecordZoneID): instancetype; message 'initWithRecordName:zoneID:'; { NS_DESIGNATED_INITIALIZER }
    function recordName: NSString; message 'recordName';
    function zoneID: CKRecordZoneID; message 'zoneID';

    { Adopted protocols }
    function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
    procedure encodeWithCoder (aCoder: NSCoder); message 'encodeWithCoder:';
    function initWithCoder (aDecoder: NSCoder): id; message 'initWithCoder:';
    class function supportsSecureCoding: ObjCBOOL; message 'supportsSecureCoding';
  end;
{$endif}