00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "NSCodingProtocol.h"
00010 #import "NSCopyingProtocol.h"
00011
00012 @class NSString;
00013
00014 @interface CPRegularExpression : NSObject <NSCopying, NSCoding>
00015 {
00016 NSString *_expressionString;
00017 void *_reserved;
00018 }
00019
00020 + (void)initialize;
00021 + (id)regularExpressionWithString:(id)fp8;
00022 + (const char *)getBytesForString:(id)fp8 lossByte:(unsigned char)fp12;
00023 - (void)dealloc;
00024 - (id)initWithExpressionString:(id)fp8;
00025 - (id)initWithExpressionString:(id)fp8 options:(unsigned int)fp12;
00026 - (unsigned int)numberOfSubexpressions;
00027 - (id)init;
00028 - (id)copyWithZone:(struct _NSZone *)fp8;
00029 - (BOOL)isEqual:(id)fp8;
00030 - (unsigned int)hash;
00031 - (id)expressionString;
00032 - (struct _NSRange)matchedRangeForCString:(const char *)fp8 range:(struct _NSRange)fp12 subexpressionRanges:(struct _NSRange *)fp20 count:(unsigned int)fp24;
00033 - (struct _NSRange)matchedRangeForString:(id)fp8 range:(struct _NSRange)fp12 subexpressionRanges:(struct _NSRange *)fp20 count:(unsigned int)fp24;
00034 - (id)initWithCoder:(id)fp8;
00035 - (void)encodeWithCoder:(id)fp8;
00036
00037 @end
00038