17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#import "OFObject.h"
#import "block.h"
OF_ASSUME_NONNULL_BEGIN
/*!
* @class OFBlock OFBlock.h ObjFW/OFBlock.h
*
* @brief The class for all blocks, since all blocks are also objects.
*/
@interface OFBlock: OFObject
+ (instancetype)alloc OF_UNAVAILABLE;
- (instancetype)init OF_UNAVAILABLE;
|
|
|
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#import "OFObject.h"
#import "block.h"
OF_ASSUME_NONNULL_BEGIN
/**
* @class OFBlock OFBlock.h ObjFW/OFBlock.h
*
* @brief The class for all blocks, since all blocks are also objects.
*/
@interface OFBlock: OFObject
+ (instancetype)alloc OF_UNAVAILABLE;
- (instancetype)init OF_UNAVAILABLE;
|