21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
*/
#import <ObjFW/ObjFW.h>
@class IRCConnection;
@class IRCUser;
#ifndef IRC_CONNECTION_M
@protocol IRCConnectionDelegate <OFObject>
#else
@protocol IRCConnectionDelegate
#endif
#ifdef OF_HAVE_OPTIONAL_PROTOCOLS
@optional
#endif
- (void)connection: (IRCConnection*)connection
didReceiveLine: (OFString*)line;
- (void)connection: (IRCConnection*)connection
didSendLine: (OFString*)line;
|
<
<
<
<
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
*/
#import <ObjFW/ObjFW.h>
@class IRCConnection;
@class IRCUser;
@protocol IRCConnectionDelegate <OFObject>
#ifdef OF_HAVE_OPTIONAL_PROTOCOLS
@optional
#endif
- (void)connection: (IRCConnection*)connection
didReceiveLine: (OFString*)line;
- (void)connection: (IRCConnection*)connection
didSendLine: (OFString*)line;
|