crayon-syntax-highlighter/util/sample/objc.txt

8 lines
211 B
Plaintext
Raw Normal View History

2019-08-30 19:30:19 +02:00
#import <objc/Object.h>
@interface Forwarder : Object {
id recipient; // The object we want to forward the message to.
}
// Accessor methods.
- (id) recipient;
- (id) setRecipient:(id)_recipient;
@end