00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSString;
00010
00011 @interface ISPredicate : NSObject
00012 {
00013 unsigned int _property;
00014 NSString *_stringValue;
00015 unsigned int _unsignedValue;
00016 }
00017
00018 + (id)predicateForProperty:(unsigned long)fp8 stringValue:(id)fp12;
00019 + (id)predicateForProperty:(unsigned long)fp8 unsignedValue:(unsigned int)fp12;
00020 - (void)dealloc;
00021 - (unsigned long)property;
00022 - (id)stringValue;
00023 - (unsigned int)unsignedValue;
00024 - (id)queryKey;
00025 - (id)queryValue;
00026
00027 @end
00028