Differences From Artifact [02a295e9aa]:
- File
src/bridge/NSString+OFObject.m
— part of check-in
[44f45c2e35]
at
2017-01-09 17:36:36
on branch trunk
— Update copyright
Forgot to add 2017, even though I already did quite some changes in
2017. (user: js, size: 753) [annotate] [blame] [check-ins using] [more...]
To Artifact [e6a88c9a1b]:
- File src/bridge/NSString+OFObject.m — part of check-in [07e85b7edb] at 2017-10-15 22:20:20 on branch trunk — bridge: Symbols to force references to categories (user: js, size: 788) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
* Public License, either version 2 or 3, which can be found in the file
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#import "NSString+OFObject.h"
#import "OFString.h"
@implementation NSString (OFObject)
- (id)OFObject
{
return [OFString stringWithUTF8String: [self UTF8String]];
}
@end
| > > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
* Public License, either version 2 or 3, which can be found in the file
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#import "NSString+OFObject.h"
#import "OFString.h"
int _NSString_OFObject_reference;
@implementation NSString (OFObject)
- (id)OFObject
{
return [OFString stringWithUTF8String: [self UTF8String]];
}
@end
|