00001
00002
00003
00004
00005
00006
00007
00008
00009 #import <Foundation/Foundation.h>
00010
00011 @class RMResponse;
00012 @protocol RMResultDelegate;
00013
00014 @interface RMResultDelegateWrapper : NSObject<RMResultDelegate> {
00015 id object;
00016 SEL finished;
00017 SEL failed;
00018 }
00019
00028 - (id)initWithObject:(id) obj finished:(SEL) fin failed:(SEL) fai;
00029
00030 - (void) finished:(RMResponse *) response;
00031 - (void) failed:(RMResponse *) response
00032 error:(NSError *) error;
00033
00034 @end