-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathBBBlocks.h
31 lines (27 loc) · 856 Bytes
/
BBBlocks.h
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
28
29
30
31
//
// BBBlocks.h
// BitBucketSDK
//
// Created by Joshka on 25/09/12.
// Copyright (c) 2012 Alfonso Uceda Pompa. All rights reserved.
//
@class BBUser;
@class BBEmail;
@class BBChangeset;
@class BBSSHKey;
@class BBIssue;
@class BBComment;
@class BBCVM;
@class BBLink;
typedef void (^BBUserBlock)(BBUser* user);
typedef void (^BBEmailBlock)(BBEmail* email);
typedef void (^BBChangesetBlock)(BBChangeset* changesset);
typedef void (^BBSSHKeyBlock)(BBSSHKey* sshKey);
typedef void (^BBIssueBlock)(BBIssue* sshKey);
typedef void (^BBCommentBlock)(BBComment* sshKey);
typedef void (^BBCVMBlock)(BBCVM* sshKey);
typedef void (^BBLinkBlock)(BBLink* sshKey);
typedef void(^BBCompletionBlock)(NSData *data);
typedef void(^BBErrorBlock)(NSError *error);
typedef void(^BBDictionaryBlock)(NSDictionary *dictionary);
typedef void(^BBArrayBlock)(NSArray *array);