25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# include "config.h"
#endif
#import "namespaces.h"
#import "XMPPIQ.h"
@implementation XMPPIQ
+ IQWithType: (OFString*)type
ID: (OFString*)ID
{
return [[[self alloc] initWithType: type
ID: ID] autorelease];
}
- initWithType: (OFString*)type
ID: (OFString*)ID
|
|
|
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# include "config.h"
#endif
#import "namespaces.h"
#import "XMPPIQ.h"
@implementation XMPPIQ
+ (instancetype)IQWithType: (OFString*)type
ID: (OFString*)ID
{
return [[[self alloc] initWithType: type
ID: ID] autorelease];
}
- initWithType: (OFString*)type
ID: (OFString*)ID
|