00001 // 00002 // LLDOProxy.h 00003 // MacTrek 00004 // 00005 // Created by Aqua on 27/04/2006. 00006 // Copyright 2006 Luky Soft. All rights reserved. 00007 // 00008 00009 #import <Cocoa/Cocoa.h> 00010 00011 // classes that implement this protocol 00012 // should have a method as declared blow 00013 // which can be invoked by a remote object 00014 @protocol LLDOProxy 00015 00016 - (void) invokeWithUserData:(id)data; 00017 00018 @end