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


{$ifdef TYPES}
type
  CKModifyBadgeOperationPtr = ^CKModifyBadgeOperation;
{$endif}

{$ifdef CLASSES}

type
  CKModifyBadgeOperation = objcclass external (CKOperation)
  public
    function init: instancetype; message 'init'; { NS_DESIGNATED_INITIALIZER }
    function initWithBadgeValue (badgeValue: NSUInteger): instancetype; message 'initWithBadgeValue:';
    procedure setBadgeValue(newValue: NSUInteger); message 'setBadgeValue:';
    function badgeValue: NSUInteger; message 'badgeValue';
    procedure setModifyBadgeCompletionBlock(newValue: OpaqueCBlock); message 'setModifyBadgeCompletionBlock:';
    function modifyBadgeCompletionBlock: OpaqueCBlock; message 'modifyBadgeCompletionBlock';
  end;
{$endif}