32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#import <ObjFW/macros.h>
#import "IRCUser.h"
@implementation IRCUser
@synthesize username = _username, nickname = _nickname, hostname = _hostname;
+ (instancetype)IRCUserWithString: (OFString *)string
{
return [[[self alloc] initWithString: string] autorelease];
}
- (instancetype)initWithString: (OFString *)string
{
self = [super init];
|
|
|
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#import <ObjFW/macros.h>
#import "IRCUser.h"
@implementation IRCUser
@synthesize username = _username, nickname = _nickname, hostname = _hostname;
+ (instancetype)userWithString: (OFString *)string
{
return [[[self alloc] initWithString: string] autorelease];
}
- (instancetype)initWithString: (OFString *)string
{
self = [super init];
|