15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
@interface OFWideString: OFObject
{
wchar_t *wstring;
size_t length;
}
+ new:(const wchar_t*)wstr;
- init;
- init:(const wchar_t*)wstr;
- (wchar_t*)wcString;
- (size_t)length;
- (OFWideString*)setTo:(const wchar_t*)wstr;
- (OFWideString*)clone;
- (OFWideString*)append:(const wchar_t*)wstr;
@end
/* vim: se syn=objc: */
|
|
|
|
|
<
<
|
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
@interface OFWideString: OFObject
{
wchar_t *wstring;
size_t length;
}
+ new: (const wchar_t*)wstr;
- init;
- init: (const wchar_t*)wstr;
- (wchar_t*)wcString;
- (size_t)length;
- (OFWideString*)setTo: (const wchar_t*)wstr;
- (OFWideString*)clone;
- (OFWideString*)append: (const wchar_t*)wstr;
@end
|