* Optimized Olivier's MYDirectoryWatcher fix (by caching the watcher's standardized path)
* Added -[NSData my_UTF8ToString] to CollectionUtils.
5 // Created by Jens Alfke on 2/11/08.
6 // Copyright 2008 Jens Alfke. All rights reserved.
9 #import <Foundation/Foundation.h>
12 @interface MYTarget : NSObject
14 id _invocations; // May be an NSInvocation, or an NSMutableArray of them
17 + (MYTarget*) targetWithReceiver: (id)receiver action: (SEL)action;
19 - (void) addTarget: (MYTarget*)target;
21 - (id) invokeWithSender: (id)sender;
26 #define $target(RCVR,METHOD) [MYTarget targetWithReceiver: (RCVR) action: @selector(METHOD)]