mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
13 lines
256 B
Objective-C
13 lines
256 B
Objective-C
@interface Record : NSObject {
|
|
NSString* First;
|
|
NSString* Last;
|
|
}
|
|
|
|
- (NSComparisonResult)compare:(Record *)otherObject;
|
|
- (void) setFirst: (NSString*)input;
|
|
- (void) setLast: (NSString*)input;
|
|
- (NSString*) Firstname;
|
|
- (NSString*) Lastname;
|
|
@end
|
|
|