00001 // 00002 // LLDOReceiver.h 00003 // MacTrek 00004 // 00005 // Created by Aqua on 27/04/2006. 00006 // Copyright 2006 __MyCompanyName__. All rights reserved. 00007 // 00008 00009 #import <Cocoa/Cocoa.h> 00010 #import "LLDOProxy.h" 00011 00012 00013 @interface LLDOReceiver : NSObject <LLDOProxy> { 00014 id target; 00015 SEL selector; 00016 } 00017 00018 // this is the target that will be called upon reception 00019 // of a remote call 00020 - (void) setTarget:(id) newTarget withSelector:(SEL)selector; 00021 00022 @end