26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#import <ObjFW/ObjFW.h>
#import <ObjFW/OFData.h>
#import "XMPPMulticastDelegate.h"
@implementation XMPPMulticastDelegate
- init
{
self = [super init];
@try {
_delegates = [[OFMutableData alloc]
initWithItemSize: sizeof(id)];
} @catch (id e) {
|
|
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#import <ObjFW/ObjFW.h>
#import <ObjFW/OFData.h>
#import "XMPPMulticastDelegate.h"
@implementation XMPPMulticastDelegate
- (instancetype)init
{
self = [super init];
@try {
_delegates = [[OFMutableData alloc]
initWithItemSize: sizeof(id)];
} @catch (id e) {
|