RosettaCodeData/Task/Distributed-programming/Objective-C/distributed-programming-1.m
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

6 lines
223 B
Objective-C

#import <Foundation/Foundation.h>
// our protocol allows "sending" "strings", but we can implement
// everything we could for a "local" object
@protocol ActionObjectProtocol
- (NSString *)sendMessage: (NSString *)msg;
@end