5 // Created by Michael Ash on 12/15/04.
8 #import "CHOMPTrampoline.h"
11 @implementation CHOMPTrampoline
13 + trampolineWithSelector:(SEL)sel target:obj
15 return [[[self alloc] initWithSelector:sel target:obj] autorelease];
18 - initWithSelector:(SEL)sel target:obj
25 - (void)forwardInvocation:(NSInvocation *)invocation
27 [self performSelector:selector withObject:invocation];
30 - (NSMethodSignature *)methodSignatureForSelector:(SEL)sel
32 NSLog(@"ERROR: %@ must provide an implementation for %@", [self class], NSStringFromSelector(_cmd));