00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @interface MessageInvocation : NSObject
00010 {
00011 id _target;
00012 SEL _selector;
00013 id _argument1;
00014 id _argument2;
00015 }
00016
00017 + (id)invocationWithSelector:(SEL)fp8 target:(id)fp12;
00018 + (id)invocationWithSelector:(SEL)fp8 target:(id)fp12 object:(id)fp16;
00019 + (id)invocationWithSelector:(SEL)fp8 target:(id)fp12 object1:(id)fp16 object2:(id)fp20;
00020 - (id)invoke;
00021 - (id)invokeWithObject:(id)fp8;
00022 - (id)target;
00023 - (SEL)selector;
00024 - (void)dealloc;
00025 - (id)description;
00026
00027 @end
00028