20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
* POSSIBILITY OF SUCH DAMAGE.
*/
#import <ObjFW/OFObject.h>
@interface IRCUser: OFObject <OFCopying>
{
OFString *nickname;
OFString *username;
OFString *hostname;
}
#ifdef OF_HAVE_PROPERTIES
@property (copy, readonly) OFString *nickname, *username, *hostname;
#endif
+ IRCUserWithString: (OFString*)string;
|
|
<
<
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
* POSSIBILITY OF SUCH DAMAGE.
*/
#import <ObjFW/OFObject.h>
@interface IRCUser: OFObject <OFCopying>
{
OFString *_nickname, *_username, *_hostname;
}
#ifdef OF_HAVE_PROPERTIES
@property (copy, readonly) OFString *nickname, *username, *hostname;
#endif
+ IRCUserWithString: (OFString*)string;
|