00001
00002
00003
00004
00005
00006
00007 #import <Foundation/NSCharacterSet.h>
00008
00009 @interface NSImmutableRangeCharacterSet : NSCharacterSet
00010 {
00011 unsigned short low;
00012 unsigned short high;
00013 }
00014
00015 + (id)characterSetWithRange:(struct _NSRange)fp8;
00016 - (id)copyWithZone:(struct _NSZone *)fp8;
00017 - (id)mutableCopyWithZone:(struct _NSZone *)fp8;
00018 - (BOOL)characterIsMember:(unsigned short)fp8;
00019 - (BOOL)isEqual:(id)fp8;
00020 - (id)bitmapRepresentation;
00021 - (BOOL)isEmpty;
00022 - (unsigned int)count;
00023 - (void)encodeWithCoder:(id)fp8;
00024 - (id)initWithCoder:(id)fp8;
00025
00026 @end
00027