00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @interface NSMethodSignature : NSObject
00010 {
00011 void *_private;
00012 char *_types;
00013 int _nargs;
00014 unsigned int _sizeofParams;
00015 unsigned int _returnValueLength;
00016 int *_fixup;
00017 void *_reserved;
00018 }
00019
00020 + (id)signatureWithObjCTypes:(const char *)fp8;
00021 - (id)init;
00022 - (void)dealloc;
00023 - (void)finalize;
00024 - (CDAnonymousStruct7 *)_frameDescriptor;
00025 - (struct NSMethodFrameArgInfo *)_argInfo:(int)fp8;
00026 - (id)_typeString;
00027 - (unsigned int)numberOfArguments;
00028 - (const char *)getArgumentTypeAtIndex:(unsigned int)fp8;
00029 - (unsigned int)frameLength;
00030 - (BOOL)isOneway;
00031 - (const char *)methodReturnType;
00032 - (unsigned int)methodReturnLength;
00033 - (unsigned int)hash;
00034 - (BOOL)isEqual:(id)fp8;
00035 - (id)debugDescription;
00036
00037 @end
00038