101
102
103
104
105
106
107
108
109
|
- (void)sendNotice: (OFString*)notice
toUser: (IRCUser*)user;
- (void)sendNotice: (OFString*)notice
toChannel: (IRCChannel*)channel;
- (void)kickUser: (IRCUser*)user
fromChannel: (IRCChannel*)channel
withReason: (OFString*)reason;
- (void)handleConnection;
@end
|
>
|
101
102
103
104
105
106
107
108
109
110
|
- (void)sendNotice: (OFString*)notice
toUser: (IRCUser*)user;
- (void)sendNotice: (OFString*)notice
toChannel: (IRCChannel*)channel;
- (void)kickUser: (IRCUser*)user
fromChannel: (IRCChannel*)channel
withReason: (OFString*)reason;
- (void)changeNicknameTo: (OFString*)nickname;
- (void)handleConnection;
@end
|