24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
@implementation XMPPDiscoIdentity
+ identityWithCategory: (OFString*)category
type: (OFString*)type
name: (OFString*)name
{
return [[[self alloc] initWithCategory: category
type: type
name: name] autorelease];
}
+ identityWithCategory: (OFString*)category
type: (OFString*)type
{
return [[[self alloc] initWithCategory: category
|
|
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
@implementation XMPPDiscoIdentity
+ identityWithCategory: (OFString*)category
type: (OFString*)type
name: (OFString*)name
{
return [[[self alloc] initWithCategory: category
type: type
name: name] autorelease];
}
+ identityWithCategory: (OFString*)category
type: (OFString*)type
{
return [[[self alloc] initWithCategory: category
|